下面是一个修改文件中指定内容的程序,这里面主要用到了以下几个函数:
FILE * fopen(const char * path,const char * mode);
size_t fread ( void *buffer, size_t size, size_t count, FILE *stream)
;
buffer:用于接收数据的内存地址;
size:要读的每个数据项的大小,单位为字节;
count:要读的数据项的个数;
stream:输入流。
size_t fwrite(const void* buffer, size_t size, size_t count, FILE*
stream);
int
fseek(FILE *stream, long offset, int fromwhere);
函数设置文件指针stream的位置。如果执行成功,stream将指向以fromwhere(偏移起始位置:文件头0(SEEK_SET),当前位置1(SEEK_CUR),文件尾2(SEEK_END))为基准,偏移offset(指针偏移量)个字节的位置。如果执行失败(比如offset超过文件自身大小),则不改变stream指向的位置。
程序代码如下:
#include
<stdio.h>
#include <time.h>
#include <unistd.h>
#include <fcntl.h>
int main()
{
time_t starttime = time(NULL);
FILE *fd;
fd = fopen("/file2.txt","r+");
if (fd == NULL)
{
printf("fail open file1.txt\n");
return -1;
}
//下面部分为写文件
/*int i = 0;
int j = 0;
for (i = 0;i < 1310720 ;++i)
{
char buf[11] = "0123456789";
fwrite(buf,sizeof(buf),1,fd);
}*/
//下面部分为修改指定内容
char a;
int count = 0;
while(fread(&a,sizeof(char),1L,fd)==1)
{
if (a == ‘9‘)
{
a = ‘1‘;
fseek(fd,-sizeof(char),SEEK_CUR);
fseek(fd,0L,SEEK_CUR);
fwrite(&a,sizeof(char),1L,fd);
if (655360 == count++)
break;
}
}
time_t endtime = time(NULL);
printf("time = %g\n",endtime-starttime);
}