Can I get a path for a Memory Mapped File? (.NET 4.0)
问题 I want that a non-.NET application access a Memory Mapped file, but this application is not aware of the existence of Memory Mapped files , so I need the file path. It is possible? 回答1: They have some samples here. EDIT I think this would provide the answer. Basically, it would seem some sort of memory pointer is required for memory-mapped files, and not a file system path. 回答2: You can use the GetMappedFileName function to get the path to a memory mapped file when it is mapped. This of