php删除文件与unlink()

时间:2015-08-10 10:20:31

标签: php fopen unlink fclose

我已经阅读了很多有关此内容的网页,但我无法让它发挥作用 我的服务器上有一个文件,需要在导入文件后删除。

该文件是.csv文件,使用fopen打开。

导入后,文件以fclose关闭。

现在我要删除文件:

chown($filepath, 666);

if (file_exists($filepath))
{
    if (unlink($filepath))
    {   
            echo "success";
    }
    else
    {
            echo "fail";    
    }   
}
else
{
        echo "file does not exist";
}

它始终与file does not exist失败,但我不知道为什么。 我使用完全相同的路径导入

微米。

1 个答案:

答案 0 :(得分:0)

您无法使用网址

直接访问该文件
$filepath = 'http://www.xxx.nl/files/testing.csv';

要访问您的文件,请使用

$filepath = ./files/testing.csv

所以文件结构将是

- file
   - testing.csv
- index.php