Fast templated directory iterator
A pointer to this type will be passed to the listDir predicate.
string[] entries; listDir!((e) { entries ~= e.fullName.relPath(tmpDir); if (e.entryIsDir) e.recurse(); })(tmpDir);
See Implementation
Fast templated directory iterator