Java FileSystem.isReadOnly()
Syntax
FileSystem.isReadOnly() has the following syntax.
public abstract boolean isReadOnly()
Example
In the following code shows how to use FileSystem.isReadOnly() method.
import java.io.IOException;
import java.nio.file.FileSystem;
import java.nio.file.FileSystems;
// w w w.j a v a2 s . c o m
public class Main {
public static void main(String[] args) throws IOException {
FileSystem fileSystem = FileSystems.getDefault();
System.out.println(fileSystem.isReadOnly());
}
}
The code above generates the following result.