PHP - 将文件夹中的所有文件重命名为1.ext,2.ext,3.ext

时间:2013-06-05 14:10:29

标签: php file rename

...当然,使用.ext,我的意思是,保留原来的扩展名!

现在问过这个问题了,但很奇怪,答案甚至都没有远程工作。对我来说,就是这样。

现在,我从这开始:

$directory = $_SERVER['DOCUMENT_ROOT'].$fileFolder.'/';
$i = 1; 
$handler = opendir($directory);
while ($file = readdir($handler)) {
    if ($file != "." && $file != "..") {
        $newName = $i . '.jpg';
        rename($file, $newName);
        $i++;
    }
}
closedir($handler);

对我来说似乎很简单,但它没有重命名任何文件...... 有谁知道出了什么问题? 或者只是一个工作片段......:D

3 个答案:

答案 0 :(得分:8)

重命名时需要完整的相对/绝对名称,而不是相对于当前正在移动的目录的文件名。但readdir()仅返回相对于您正在走过的目录的文件名。

$directory = $_SERVER['DOCUMENT_ROOT'].$fileFolder.'/';
$i = 1; 
$handler = opendir($directory);
while ($file = readdir($handler)) {
    if ($file != "." && $file != "..") {
        $newName = $i . '.jpg';
        rename($directory.$file, $directory.$newName); // here; prepended a $directory
        $i++;
    }
}
closedir($handler);

答案 1 :(得分:1)

readdir()仅返回您正在扫描的目录的文件名。由于您打开了运行脚本的任何目录的子目录,因此您需要在重命名调用中包含该子目录,例如:

    rename($directory . $file, $directory . $newName);

答案 2 :(得分:1)

<?
$dir = opendir('test');
$i = 1;

// loop through all the files in the directory
while (false !== ($file = readdir($dir)))
{
    // if the extension is '.jpg'
    if (strtolower(pathinfo($file, PATHINFO_EXTENSION)) == 'jpg')
    {
        // do the rename based on the current iteration
        $newName = 'test/'. $i . '.jpg';
        $new = 'test/'.$file;
        rename($new, $newName);

        // increase for the next loop
        $i++;
    }
}

// close the directory handle
closedir($dir);
?>
www.codeprojectdownload.com