我在linux上,我试图删除一个文件。但是,我继续收到许可错误。我已尝试同时使用chown
和chmod
并将两者都设置为666,777和0777,并取消链接($ file,0777)但没有成功。我有什么遗失的吗?
$path = scandir('../folder1/folder2');
$file = realpath('../folder1/folder2/'.$path[2]);
//chown($file, 0777);
//chmod($file, 0777);
if (!unlink($file)))
{
echo ("Error deleting $path[2]");
}
else
{
echo ("Deleted $path[2]");
}