Opening a Memory Mapped File causes FileNotFoundException when deployed in IIS
问题 Following the code example from this website, I created a windows console application that creates a mapped memory file: using (var file = MemoryMappedFile.CreateNew("myFile", 24)) { var bytes = new byte[24]; for (var i = 0; i < bytes.Length; i++) bytes[i] = (byte)(65 + i); using (var writer = file.CreateViewAccessor(0, bytes.Length)) { writer.WriteArray<byte>(0, bytes, 0, bytes.Length); } Console.WriteLine("Run memory mapped file reader before exit"); Console.WriteLine("Press any key to exit