java.io.File setReadOnly()
Description
Throws:
- SecurityException – If a security manager exists and its SecurityManager.checkWrite(java.lang.String) method denies write access to the named file.
Method Syntax
public boolean setReadOnly()
Method Argument
Data Type | Parameter | Description |
---|---|---|
N/A | N/A | N/A |
Method Returns
This method returns boolean, true if and only if the operation succeeded; false otherwise.
Compatibility
Requires Java 1.2 and up
Java File setReadOnly() Example
Below is a java code demonstrates the use of setReadOnly() method of File class. The example presented might be simple however it shows the behaviour of the setReadOnly() method of File class.
Basically we set a file as readonly and we put a check if the operation succeeded or not.
package com.javatutorialhq.java.examples; import java.io.File; /* * This example source code demonstrates the use of * setReadOnly() method of File class. * */ public class FileSetReadonlyExample { public static void main(String[] args) { // initialize File object File file = new File("C:javatutorialhqinputtest_file.txt"); // check first if file exist if(file.exists()){ // set file as read only boolean result = file.setReadOnly(); // evaluate the result if(result){ System.out.println("Operation succeeded"); }else{ System.out.println("Operation failed"); } }else{ System.out.println("File does not exist"); } } }