Jump to content

Walk a directory/Recursively: Difference between revisions

added the java 8 version
(Added zkl)
(added the java 8 version)
Line 974:
}
}</lang>
{{works with|Java|8+}}
<lang java>import java.io.IOException;
import java.nio.file.*;
 
public class WalkTree {
public static void main(String[] args) throws IOException {
Path start = FileSystems.getDefault().getPath("/path/to/file");
Files.walk(start)
.filter( path -> path.toFile().isFile())
.filter( path -> path.toString().endsWith(".mp3"))
.forEach( System.out::println );
}
}
</lang>
 
=={{header|JavaScript}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.