Netbeans / Java / 在 Mac 上删除文件
我的 Java 程序有问题。我想删除硬盘上的文件;我用的是MacBook。 这是我的代码:
public static void main(String[] args)
{
File actualFile = new File("/Users/luffy/test.xml");
actualFile.delete();
}
chmod
已设置!请帮忙。
I have a problem with my Java program. I want to delete a file on my hdd; I use a MacBook.
Here is my code:
public static void main(String[] args)
{
File actualFile = new File("/Users/luffy/test.xml");
actualFile.delete();
}
chmod
is set! Help please.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保该文件未被其他程序使用。
确保您已关闭访问此文件的所有流。
Make sure that the file is not in use by another program.
Make sure that you have closed all streams accessing this file.