标签: python mmap
我正在尝试加载硬盘驱动器,而不是将块加载到内存中,我以为我可以尝试mmap,但它不适用于物理驱动器。
file = open("\\\\.\\PHYSICALDRIVE4", "r+") data = mmap.mmap(file.fileno(), 0) print(data[0:10])
我期望文件中的前10个字节,但我得到:
OSError: [WinError 1] Incorrect function