Function listDirectory
Enumerates all files in the specified directory.
void listDirectory
(
GenericPath!(vibe.core.path.PosixPathFormat) path,
scope @safe bool delegate(FileInfo) del
) @safe;
void listDirectory
(
string path,
scope @safe bool delegate(FileInfo) del
) @safe;
void listDirectory
(
GenericPath!(vibe.core.path.PosixPathFormat) path,
scope bool delegate(FileInfo) del
);
void listDirectory
(
string path,
scope bool delegate(FileInfo) del
);