Java IO Tutorial - Java FileStore.isReadOnly()








Syntax

FileStore.isReadOnly() has the following syntax.

public abstract boolean isReadOnly()

Example

In the following code shows how to use FileStore.isReadOnly() method.

import java.io.IOException;
import java.nio.file.FileStore;
import java.nio.file.FileSystem;
import java.nio.file.FileSystems;
//from   w  w w .j a  v  a  2s  .  c o m
public class Main {

  public static void main(String[] args) throws IOException {
    FileSystem fileSystem = FileSystems.getDefault();

    for (FileStore store : fileSystem.getFileStores()) {
      System.out.println(store.isReadOnly());
    }
  }
}

The code above generates the following result.