I’ve used memory mapped files in windows and visual studio successfully, but,I’m trying to migrate a project to mono and fedora 17 , my code is as simple as this:
Var file = MemoryMappedFile.CreateNew(@"/home/xxx/xxx/filename", 1024*1024);
Unlike visual studio, in the filename you have to put an existing file. Otherwise, you get a File NofoundException, I was getting the “Capacity exception” but calling the method with the exact file size I now getting a new exception:
Mono.Unix.UnixIOException: File exists [EEXIST]. at Mono.Unix.UnixMarshal.ThrowExceptionForLastError () [0x00000] in /builddir/build/BUILD/mono-2.10.8/mcs/class/Mono.Posix/Mono.Unix/UnixMarshal.cs:456 at System.IO.MemoryMappedFiles.MemoryMapImpl.Open (System.String path, FileMode mode, Int64 capacity, MemoryMappedFileAccess access) [0x0006b] in /builddir/build/BUILD/mono-2.10.8/mcs/class/System.Core/System.IO.MemoryMappedFiles/MemoryMappedFile.cs:133 at System.IO.MemoryMappedFiles.MemoryMappedFile.CreateFromFile (System.String path, FileMode mode, System.String mapName, Int64 capacity, MemoryMappedFileAccess access) [0x00055] in /builddir/build/BUILD/mono-2.10.8/mcs/class/System.Core/System.IO.MemoryMappedFiles/MemoryMappedFile.cs:475 at System.IO.MemoryMappedFiles.MemoryMappedFile.CreateNew (System.String mapName, Int64 capacity, MemoryMappedFileAccess access, MemoryMappedFileOptions options, System.IO.MemoryMappedFiles.MemoryMappedFileSecurity memoryMappedFileSecurity, HandleInheritability handleInheritability) [0x00000] in /builddir/build/BUILD/mono-2.10.8/mcs/class/System.Core/System.IO.MemoryMappedFiles/MemoryMappedFile.cs:525 at Unixtest.MainClass.Inicialize () [0x00009] in /home/xxx/xxx/Unixtest/Main.cs:50 }
I’m stuck here, any ideas?
CreateNewcreates a new file and throws an exception if the file already exists.UnixIOException: File existstells you that the file already exists. Solution: don't useCreateNew. – dtb Dec 7 '12 at 16:18open(), notmmap(). There are also some comments in the code which indicate that the code is incomplete and not 100% compatible with Microsoft. – Martin Baulig Dec 12 '12 at 0:14