Processing the contents of a directory by using the DirectoryStream interface - Java File Path IO

Java examples for File Path IO:Directory Content

Description

Processing the contents of a directory by using the DirectoryStream interface

Demo Code

import java.io.IOException;
import java.nio.file.DirectoryIteratorException;
import java.nio.file.DirectoryStream;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;

public class Main {

  public static void main(String[] args) {
    Path directory = Paths.get("/home");
    try (DirectoryStream<Path> directoryStream = Files.newDirectoryStream(directory)) {
      for (Path file : directoryStream) {
        System.out.println(file.getFileName());
      }/*w w w.  j a  v a 2s  .  com*/
    } catch (IOException | DirectoryIteratorException ex) {
      ex.printStackTrace();
    }
  }

}

Related Tutorials