Skip to content

Instantly share code, notes, and snippets.

@ezsi
Last active December 20, 2015 22:19
Show Gist options
  • Save ezsi/6204708 to your computer and use it in GitHub Desktop.
Save ezsi/6204708 to your computer and use it in GitHub Desktop.
Java: list files in a directory
Files.walkFileTree(Paths.get(dir), new SimpleFileVisitor<Path>() {
public FileVisitResult visitFile(Path path, BasicFileAttributes attrs)
throws IOException{
// insert code here
return FileVisitResult.CONTINUE;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment