1

我一直在环顾四周,// if sucess显然应该在文件重命名时执行:

if(rename("$filepath$oldfilename", "$filepath$filename")===true) { // if success }

不幸的是,由于这个函数会重命名文件,即使那里有另一个同名的文件,它总是成功的。

但更糟糕的是......由于另一个同名文件已经存在,它以某种方式被删除......

任何人都知道如何防止这种情况?为什么会这样?!

附加信息:

我让用户有机会通过文本区域更改文件名,当它发布时,重命名功能将启动:

        if(rename("$filepath$oldfilename", "$filepath$filename")===true)
        {
            $WhatToUpdateQueryResult = mysql_query($WhatToUpdateQuery) or die ("query fout ". mysql_error() );      

            if ($WhatToUpdateQueryResult == 1)
            {
                $uploadmsg = "Document name successfully updated.<br/> From: $oldfilename <br/> To: $filename.";
            }
        }
        else
        {
            $uploadmsg = "Can't update document. A file with the same name already exists.";
        }

注意:只要我将名称更改为尚不存在的名称,它就可以正常工作。但是,它总是以正确的方式结束。

4

2 回答 2

5

您必须创建一个函数来检查文件名是否已经存在:

function rename_if_free($newPath, $oldPath) {
    if (file_exists($newPath)) return false;
    else {
        rename($oldPath, $newPath);
        return true;
    }
}

并将该函数放入您的if语句中。

现在它将是

if (rename_if_free($filepath.$oldfilename, $filepath.$filename) === true) { 
    $WhatToUpdateQueryResult = mysql_query($WhatToUpdateQuery) or die ("query fout ". mysql_error() );      

        if ($WhatToUpdateQueryResult == 1)
        {
            $uploadmsg = "Document name successfully updated.<br/> From: $oldfilename <br/> To: $filename.";
        }
}
else {
    $uploadmsg = "Can't update document. A file with the same name already exists.";
}
于 2012-12-04T14:12:16.720 回答
0

http://php.net/manual/en/function.move-uploaded-file.php

取而代之move_uploaded_file。如果文件无法移动,这将返回 false。

编辑:啊,你不一定要上传?然后你必须手动检查目标文件是否已经存在,我假设。查看file_exists()

于 2012-12-04T14:10:55.670 回答