|
...
|
...
|
@@ -56,7 +56,7 @@ class FileController |
|
|
|
if ($info === false) {
|
|
|
|
$this->response('指定文件不存在!', Code::USER_ERROR);
|
|
|
|
}
|
|
|
|
$path = $info['path'];
|
|
|
|
$path = $this->path.$info['path'];
|
|
|
|
if (!is_file($path)) {
|
|
|
|
$this->response('指定文件已被系统删除!', Code::USER_ERROR);
|
|
|
|
}
|
...
|
...
|
|