How to get the size of all the text files that start with specific letter from a directory in PHP

1 Answer

0 votes
foreach (glob("d:\d*.txt") as $filename) {
    echo "file: $filename - size: " . filesize($filename) . "<br />";
}

   
/*
run:

file: d:\data.txt - size: 18
file: d:\data2.txt - size: 0
file: d:\datefile.txt - size: 50

*/

 



answered Nov 28, 2017 by avibootz
...