Writing your own directory filter : DirectoryStream « JDK 7 « Java






Writing your own directory filter


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 Test {
  public static void main(String[] args) {
    DirectoryStream.Filter<Path> filter = new DirectoryStream.Filter<Path>() {
      public boolean accept(Path file) throws IOException {
        return (Files.isHidden(file));
      }
    };
    Path directory = Paths.get("C:/Windows");
    try (DirectoryStream<Path> directoryStream = Files.newDirectoryStream(
        directory, filter)) {
      for (Path file : directoryStream) {
        System.out.println(file.getFileName());
      }
    } catch (IOException | DirectoryIteratorException ex) {
      ex.printStackTrace();
    }
  }
}

 








Related examples in the same category

1.Zip file system provider
2.Using the DirectoryStream interface to process the contents of a directory
3.Get DirectoryStream from a Path with file name matcher