如何强制删除文件
当我尝试删除文件时,出现访问被拒绝的错误。我应该如何设置文件的模式,或者是否有任何方法可以在不更改模式的情况下强制删除文件。
When I try to delete a file I am getting acess denied as error .How should I set the mode of a file or is there any way of deleting a file forcefully with out changing the mode.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个问题取决于操作系统。
对于 UNIX/Linux,需要对包含该文件的目录具有写权限。如果在目录上设置了粘滞位(例如在 /tmp 上),您也必须是该文件的所有者。
如果您使用的是其他操作系统,您可能需要完善您的问题。
This question is OS-dependent.
With UNIX/Linux it is neccessary to have write permission for the directory containing the file. If the sticky bit is set on the directory (like on /tmp) you have to be owner of the file, too.
If you're using annother OS you may want to refine your question.
您需要更改文件及其父文件夹的权限。据我所知,如果没有必要的权限,就无法提前删除文件。对于不同的操作系统,调整文件的权限会有所不同。
对于 *nix 请参阅:chmod
You need to change the permissions of the file and its parent folders. As far as I know there is no way to delete a file forefully without having necessary permissions. Adjusting permissions of a file will differ for different operating systems.
for *nix see: chmod