0

在 Windows 上的 Java 中,我们如何知道文件或文件夹是否被读保护?

我尝试使用 canRead() 和 setReadable() :

String pathFile = "D:/Folder";
File f = new File(pathFile);
System.out.println("Is Protected => " + f.setReadable(true)==true);

但它不能解决我的问题

谢谢

4

1 回答 1

0

当且仅当文件系统实际上包含由此抽象路径名表示的文件并且允许应用程序写入该文件时,canWrite 方法才为真;否则为假。

File lFile = new File("Sample.txt")
lFile.canWrite();
于 2013-02-27T15:50:13.053 回答