Boost.Filesystem-like library for D

Has anyone written a D library similar to Boost.Filesystem that provides iterators / ranges that can perform, for example, traversing the file system directory tree?

+4
source share
1 answer

dirEntries from std.file returns a range that lists files and directories, also in subdirectories.

+9
source

All Articles