| counting file with filename containing
|
ahmed24

msg:4103806 | 3:31 pm on Mar 24, 2010 (gmt 0) | i have a folder called "datafolder" and i would like to see if there are files in there that begin with the name "2010-002" and if so how many files there are that begin with that convention. can any advise me on how i can achieve this? thanks
|
StoutFiles

msg:4103811 | 3:41 pm on Mar 24, 2010 (gmt 0) | Run this in the folder. <?php $count = 0; if ($handle = opendir('.')) { while (false !== ($file = readdir($handle))) { if ($file != "." && $file != "..") { if(substr_count($file, '2010-002') >= 1) {$count++;} } } closedir($handle); } echo "Count: ".$count; ?>
|
|
|