October 04, 2020
https://issues.dlang.org/show_bug.cgi?id=21289

          Issue ID: 21289
           Summary: [The D Bug Tracker] "File does not exist"
                    FileException on c:\hiberfil.sys
           Product: D
           Version: D2
          Hardware: x86_64
               URL: http://dlang.org/
                OS: Windows
            Status: NEW
          Severity: normal
          Priority: P3
         Component: dlang.org
          Assignee: nobody@puremagic.com
          Reporter: vital.fadeev@gmail.com

Created attachment 1805
  --> https://issues.dlang.org/attachment.cgi?id=1805&action=edit
file

"File does not exist" FileException on existent file: c:\hiberfil.sys


Source code:

import std.stdio;

void main()
{
    import std.file : DirEntry;

    writeln( DirEntry( "c:\\hiberfil.sys" ).isDir() );
}

I expected "false".

Not FileException.

Because "c:\\hiberfil.sys" is exist.

--