I have this code which produces this error:
Here is the code i'm using:
Any ideas??
Regards,
Martin
Computing Help And Info:
Code:
Warning: filesize(): Stat failed for MJB3K-B4t3s_songs.html (errno=2 - No such file or directory) in /home2/webrevol/public_html/readDir.php on line 5
MJB3K-B4t3s_songs.html: 0 KB
Code:
if ($handle = opendir('messaging_files/')) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != "..") {
echo $file . ': ' . round(filesize($file)/1024) . ' KB';
//echo "$file - " . filesize($file) . "\n";
}
}
closedir($handle);
}
Regards,
Martin
Computing Help And Info: