Fix recursive issue ( -r flag )

This commit is contained in:
斟酌 鵬兄 2014-01-24 13:48:13 +08:00
parent ca3291bcb6
commit 10c48da98a

View File

@ -49,16 +49,14 @@ function getFileList ( $dir ) {
}
function getDirList ( $dir ) {
$dirList = array();
$iterator = new DirectoryIterator ( getDirName ( $dir ) ) ;
$dirList = array();
$iterator = new DirectoryIterator ( getDirName ( $dir ) ) ;
foreach ( $iterator as $fileinfo ) {
if ( $fileinfo->isDir() ) {
if ( $fileinfo->isDir() && !$fileinfo->isDot()) {
$dirList[] = $fileinfo->getFilename();
}
}
//Chop dir "." and ".."
array_shift ( $dirList ) ;
array_shift ( $dirList ) ;
}
return $dirList;
}
@ -206,7 +204,7 @@ foreach ( $searchDirs as $dir ) {
}
if( $matches[2][0] != $newName ) {
if( $test ) {
echo "File \"{$matches[2][0]}\" will renamed to \"$newName\"\n";
echo "File \"{$matches[2][0]}\" will be renamed to \"$newName\"\n";
} else {
rename ( $file, "{$matches[1][0]}$newName" );
}
@ -225,4 +223,4 @@ if ( $test ) echo "*** Test enabled ***\n\n";
//------- End Operations -------*/
?>
?>