I am trying to open a memory mapped file in a subfolder of system volume information. I know and see in the explorer that it exists there, and the path is correct (it is copied from the explorer), and File.Exists for this path returns true, but MemoryMappedFile.OpenExisting does not work with DirectoryNotFoundException. What for? (I have all rights to the folder with information about the system volume and subfolders).
Some codes:
const string filePath = @"C:\\System Volume Information\\Foo\\2.ext"; bool exists = File.Exists(filePath);
source share