Python 读取文件在 Windows 7 中提前停止
我正在使用Python打开计算机中的物理磁盘来读取第一个扇区。
disk = r"\\.\PhysicalDrive0"
with open(disk, 'r') as f:
f.seek(0)
partdata = f.read(512)
len(partdata)
在 Windows XP 中 len(partdata)
将返回 512 并具有正确的内容。在 Windows 7 中,len(partdata)
返回 230,并且数据在中断之前都是正确的。
此外,尝试在磁盘中进一步查找是行不通的,它只返回前 230 个字节。
Python 版本 2.7.1 和 2.7.2 32 位和 64 位
在 Windows 7 上,一台 32 位计算机一台 64 位计算机。
I am using Python to open the physical disk in the computer to read the first sector.
disk = r"\\.\PhysicalDrive0"
with open(disk, 'r') as f:
f.seek(0)
partdata = f.read(512)
len(partdata)
In windows XP len(partdata)
will return 512 and have the correct content. In windows 7 len(partdata)
returns 230 and the data is correct until it breaks off.
Also, trying to seek farther into the disk doesn't work and it only returns the first 230 bytes.
Python versions 2.7.1 and 2.7.2 32bit and 64bit
On Windows 7, one 32bit machine one 64bit.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试以二进制模式打开
Try opening in binary mode