我对文件具有写权限,但无法使用“unlink()”删除它的功能

发布于 2024-12-18 17:53:32 字数 255 浏览 1 评论 0原文

我用谷歌搜索了一下,找不到任何适合我的答案。我试图取消链接文件,但没有任何反应,也没有出现错误(display_errors() 停止加载页面)。代码如下。谢谢!

 chdir("/var/www/lib.techtri.be/");
 unlink("/var/www/lib.techtri.be/R1Count.txt");

编辑:我知道不需要 chdir,它只是用于文件中的后面部分。

I've Googled around a bit, and can't find any answer that works for me. I'm trying to unlink a file, but nothing happens and no errors appear (display_errors() stopped the page from loading). The code is below. Thanks!

 chdir("/var/www/lib.techtri.be/");
 unlink("/var/www/lib.techtri.be/R1Count.txt");

Edit: I know the chdir isn't needed, that's just for the later parts in the file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

究竟谁懂我的在乎 2024-12-25 17:53:32

仅当您对包含该文件的目录也具有写入权限时,才可以删除该文件。

% mkdir foo
% touch foo/bar
% chmod u-w foo
% rm foo/bar
rm foo/bar: Permission denied

You can only delete a file if you also have write permission on the directory containing it.

% mkdir foo
% touch foo/bar
% chmod u-w foo
% rm foo/bar
rm foo/bar: Permission denied
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文