Version: 1.0b
Type: Full Script
Category: File Management
License: GNU General Public License
Description: This Script simply Rename to lowercase all file in a directory, if you want to contact my my web community is on http://www.dawnofdreams.org
<?php
$path = "*********PATH***********";
$dir=opendir($path);
while ($file2 = readdir($dir)) {
if ($file2 != ".." AND $file2 != ".") {
$new = strtolower($file2);
rename($file2, $new);}
}
closedir($dir);
?>