Windows 上の Java では、ファイルまたはフォルダーが読み取り保護されていることをどのように知ることができますか?
私は canRead() et setReadable() で試します:
String pathFile = "D:/Folder";
File f = new File(pathFile);
System.out.println("Is Protected => " + f.setReadable(true)==true);
しかし、それは私の問題を解決しません
ありがとうございました