我有用户通过FTP将文件上传到某个目录,我想用PHP检查文件是否已完全上传。
例如,如果我要上传文件但仍在上传,我不想对此文件执行任何操作,我希望循环为continue
。
这是我的循环:
foreach($files as $f) {
if($f == "." OR $f == "..") continue;
if(!preg_match("@\.filepart^@", $f)) {
// Here I want to check if the file has been fully uploaded
// Something like: if($fileInUse) continue;
}
}
我该怎么做?
操作系统:CentOS 6