我是一个初学者,我正在尝试将一个大小约为 33MB(精确为 33136KB)的非常大的文本文件的内容复制到一个新文件中。运行程序时出现分段错误。只有 16KB 被复制到我的新文件中。我要复制的文件名是“test_file3”,我的新文件名是“newfile”。我在 CentOS-5 的虚拟盒子里做这一切。这是详细信息:
[root@localhost decomp_trials]# cat read_file.c
#include <stdio.h>
#include <stdlib.h>
int main( int argc, char *argv [] )
{
FILE *ifp, *ofp;
char *ptr;
ifp = fopen ( argv [ 1 ], "r" );
ofp = fopen ( argv [ 2 ], "a" );
for ( ptr = malloc ( 10 ); fread ( ptr, 1, 10, ifp ); )
fprintf ( ofp, ptr );
fclose ( ifp );
fclose ( ofp );
return 0;
}
[root@localhost decomp_trials]# cc read_file.c -o read_file
[root@localhost decomp_trials]# ./read_file /root/sys_cl_huk_ajh/imp/copy_hook7/test_file3 newfile
Segmentation fault
[root@localhost decomp_trials]# du -s newfile
16 newfile
[root@localhost decomp_trials]# pwd
/root/sys_cl_huk_ajh/pro_jnk/decomp_trials
[root@localhost decomp_trials]# du -s ../../imp/copy_hook7/test_file3
33136 ../../imp/copy_hook7/test_file3
[root@localhost decomp_trials]#
请告诉我我可能做错了什么。有没有更好的方法?请帮帮我