Linux系统编程(文件)———文件编程应用(配置文件修改,写结构体数组到文件)
Posted 橙子果果
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux系统编程(文件)———文件编程应用(配置文件修改,写结构体数组到文件)相关的知识,希望对你有一定的参考价值。
配置文件的修改
比如这是我们的一个软件的配置文件
我们需要将LENG的参数改成5
操作
1.找到需要修改的字段的的首位置。
2.首位置往后移到需要修改的参数的位置
3.修改参数的内容
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
int main(int argc,char **argv)
{
int fdSrc;
char *readBuf=NULL;
if(argc != 2){
printf("PARARM ERROR\\n");
exit(-1);
}
fdSrc = open(argv[1],O_RDWR);
int size = lseek(fdSrc,0,SEEK_END);
lseek(fdSrc,0,SEEK_SET);
readBuf=(char *)malloc(sizeof(char)*size+8);
int n_read = read(fdSrc,readBuf,size);
char *p = strstr(readBuf,"LENG=");
if(p==NULL){
printf("not found\\n");
exit(-1);
}
p = p+strlen("LENG=");
*p = '5';
lseek(fdSrc,0,SEEK_SET);
int n_write = write(fdSrc,readBuf,strlen(readBuf));
close(fdSrc);
return 0;
}
这里有一个strstr的函数,它的作用就是找到内容的位置。返回指针。
之后光标就在找到的内容的头位置
然后移动光标的位置,并对光标处的内容进行写入。
这里*p = ‘5’,就直接把LENG=后面的内容写成了5(注意:写到文件里的都是字符)
最后要移动光标在写入文件。
写结构体数组到文件
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
struct Test
{
int a;
char c;
};
int main()
{
int fd;
struct Test data[2]={{100,'a'},{110,'b'}};
struct Test data2[2];
fd = open("./file1",O_RDWR);
int n_write = write(fd,&data,sizeof(struct Test)*2);
lseek(fd,0,SEEK_SET);
int n_read = read(fd,&data2,sizeof(struct Test)*2);
printf("read %d,%c \\n",data2[0].a,data2[0].c);
printf("read %d,%c \\n",data2[1].a,data2[1].c);
close(fd);
return 0;
}
运行结果
以上是关于Linux系统编程(文件)———文件编程应用(配置文件修改,写结构体数组到文件)的主要内容,如果未能解决你的问题,请参考以下文章