Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions std/file.d
Original file line number Diff line number Diff line change
Expand Up @@ -1611,6 +1611,16 @@ version(StdDdoc)
+/
this(string path);

version (Windows)
{
private this(string path, in WIN32_FIND_DATA* fd);
private this(string path, in WIN32_FIND_DATAW *fd);
}
else version (Posix)
{
private this(string path, core.sys.posix.dirent.dirent* fd);
}

/++
Returns the path to the file represented by this $(D DirEntry).

Expand Down