Java IO Tutorial - Java FileStore.name()








Syntax

FileStore.name() has the following syntax.

public abstract String name()

Example

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

import java.io.IOException;
import java.nio.file.FileStore;
import java.nio.file.FileSystem;
import java.nio.file.FileSystems;
/*w  ww  . ja v  a 2  s.c om*/
public class Main {

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

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

The code above generates the following result.