我想知道在Python中我是否可以编写类似的内容:
FILE *file = fopen(path, mode);
char tmp[block_size] = {0};
while(ftell(file) < file_length)
{
fread(tmp, 1, (file_size - fw.tell()) > block_size ?
block_size : (file_size - ftell(file)), file);
// do something
}
fclose(file);