使用mmap与PhysicalDrive的不正确的功能错误

时间:2018-12-27 20:48:33

标签: python mmap

我正在尝试加载硬盘驱动器,而不是将块加载到内存中,我以为我可以尝试mmap,但它不适用于物理驱动器。

file = open("\\\\.\\PHYSICALDRIVE4", "r+")

data = mmap.mmap(file.fileno(), 0)

print(data[0:10])

我期望文件中的前10个字节,但我得到:

OSError: [WinError 1] Incorrect function

0 个答案:

没有答案