在复制,创建或上传文件时,php file_exists

时间:2013-09-10 05:32:46

标签: php file file-upload file-exists

这是代码

if(file_exists('1.mp4')){
echo "File Exists";
//Performing some operations on file
}
else{
    echo "File Does Not Exists";
}

现在,问题是“if”条件在上传文件时得到满足 文件上传正在进行中,然后我正在对该文件执行某些操作。
但是正在上传/复制/创建过程中文件不完整,这就是问题。

如何在file_exists之后等待,直到文件成功上传/复制/创建。然后对它进行操作?

1 个答案:

答案 0 :(得分:1)

首先,我不推荐这个,除非它是最后一个可能的选择。知道文件何时准备就好比猜测复制操作是否已经完成。

即使文件不再增长也不意味着内容实际上是有效的;也许复制操作已中止,部分文件仍然存在;如果没有校验和,您将不知道该文件是否可以实际使用。

function waitFor($file, $delay = 1)
{
    if (file_exists($file)) {
        $current_size = filesize($file);
        while (true) {
            sleep($delay);
            clearstatcache(false, $file); // requires >= 5.3
            $new_size = filesize($file);
            if ($new_size == $current_size) {
                break;
            }
            $current_size = $new_size;
        }

        return $current_size;
    } else {
        return false;
    }
}

waitFor('/path/to/file', 2); 
// consider file is ready if size not changed for two seconds