File: setReadOnly() : File « java.io « Java by API
- Java by API
- java.io
- File
File: setReadOnly()
/*
*/
import java.io.File;
public class MainClass {
public static void main(String[] args) throws Exception {
File f = new File("f");
if (!f.setReadOnly()) {
System.out.println("Grrr! Can't set file read-only.");
return;
}
}
}
Related examples in the same category