FileSystem.isReadOnly() has the following syntax.
public abstract boolean isReadOnly()
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; /*from w w w . ja va2s. 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.