作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我是 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 - 如何在类似于 C 的 Python 中读取文件头?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2085464/
我是一名优秀的程序员,十分优秀!