gpt4 book ai didi

python - 如何在类似于 C 的 Python 中读取文件头?

转载 作者:太空狗 更新时间:2023-10-30 00:47:01 26 4
gpt4 key购买 nike

我是 Python 新手。我的职业是 C 程序员。我有一个文件,其标题有一些我需要提取的特定数据。例如0-5字节有magic,6-8字节有offset等。

在 C 中(示例):

struct {  
int32_t payload_offset,
int32_t len,
char *magic,
int32_t type
int32_t header_size
} file_hdr;

然后在我的函数中,我执行以下操作:

file_hdr *hdr;
ptr = &hdr;
fd = open(path_to_file, "r");
num_read = read(fd, ptr, bytes).

然后我可以访问像这样的 ptr->type、ptr->magic 等头数据。

如何在 Python 中实现类似的效果?由于 Python 变量没有类型,访问文件头数据的最佳方式是什么?

我需要使用标题数据来做出一些决定。

提前致谢。

最佳答案

一种方法是使用 python struct 模块,文档是 here .
如果您需要更强大的功能,另一种选择是使用很棒的 construct可以执行上述以及更多操作的库。

关于python - 如何在类似于 C 的 Python 中读取文件头?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2085464/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com