Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Windows 上的 Java 中,我们如何知道文件或文件夹是否被读保护?
我尝试使用 canRead() 和 setReadable() :
String pathFile = "D:/Folder"; File f = new File(pathFile); System.out.println("Is Protected => " + f.setReadable(true)==true);
但它不能解决我的问题
谢谢
当且仅当文件系统实际上包含由此抽象路径名表示的文件并且允许应用程序写入该文件时,canWrite 方法才为真;否则为假。
File lFile = new File("Sample.txt") lFile.canWrite();