使用内存映射文件在.net中尽可能快地读取文件流时,由于文件锁定而导致IOException
s问题,因为两个进程读取同一文件。
有几种工厂方法可以生成内存映射文件,如何允许共享readonly
访问?
答案 0 :(得分:5)
这是一个简化的工厂方法,用于为路径创建只读内存映射文件:
public static MemoryMappedFile MemFile(string path)
{
return MemoryMappedFile.CreateFromFile(
//include a readonly shared stream
File.Open(path, FileMode.Open, FileAccess.Read, FileShare.Read),
//not mapping to a name
null,
//use the file's actual size
0L,
//read only access
MemoryMappedFileAccess.Read,
//not configuring security
null,
//adjust as needed
HandleInheritability.None,
//close the previously passed in stream when done
false);
}
创建和使用完整的流:
using (var memFile = MemFile(path))
using (var stream = memFile.CreateViewStream(0L, 0L, MemoryMappedFileAccess.Read))
{
//do stuff with your stream
}