Python 读取文件在 Windows 7 中提前停止

发布于 2024-11-16 15:19:42 字数 445 浏览 5 评论 0原文

我正在使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

扛起拖把扫天下 2024-11-23 15:19:42

尝试以二进制模式打开

with open(disk, 'rb') as f:

Try opening in binary mode

with open(disk, 'rb') as f:
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文