Function dirEntries

Like std.file.dirEntries, but supports Path and command echoing.

auto std.file.DirIterator dirEntries (
  string path,
  std.file.SpanMode mode,
  bool followSymlink = true
);

auto std.file.DirIterator dirEntries (
  Path path,
  std.file.SpanMode mode,
  bool followSymlink = true
);

auto std.algorithm.iteration.FilterResult!(std.file.dirEntries(string,string,std.file.SpanMode,bool).f(std.file.DirEntry),std.file.DirIterator) dirEntries (
  string path,
  string pattern,
  std.file.SpanMode mode,
  bool followSymlink = true
);

auto std.algorithm.iteration.FilterResult!(std.file.dirEntries(string,string,std.file.SpanMode,bool).f(std.file.DirEntry),std.file.DirIterator) dirEntries (
  Path path,
  string pattern,
  std.file.SpanMode mode,
  bool followSymlink = true
);