简体   繁体   中英

how do I delete image file less than particular size?

I want delete files less than a particular size say 10kb. how do I do it in PHP??

Like so, for example:

foreach (glob('/path/to/files/*') as $file) {
    if (is_writable($file) && filesize($file) < (1024 * 10)) {
        unlink($file);
    }
}

To check size of file you need use this link . Here you got how list files in directory . Here you got documentation of readdir.

Using those links should help you.

Hope this might help:

<?php
  // outputs e.g.  somefile.txt: 1024 bytes

  $filename = 'somefile.txt';
  if(filesize($filename) == (10*1024)){
     unlink($filename);
  }
?>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM