您好,登录后才能下订单哦!
/*
#define FLAGS O_WRONLY|O_CREAT|O_TRUNC /定义参数flags:以读写方式打开文件,向文件添加内容时从文件尾开始写/
#define MODE 0600 /定义参数MODE:文件所有者读写方式/
#define FILENAME "/home/mrhe/test" /要进行操作的文件/
int main(int argc, char argv[])
{
int count;
int fd;
char buf1[]={"abcdefghij"}; //缓冲区1,长度为10
char buf2[]={"1234567890"}; //缓冲区2,长度为10
const char pathname=FILENAME;
if((fd=open(pathname,FLAGS,MODE))==-1)
{
printf("error,open file failed!\n");
exit(1);
}
count=strlen(buf1);
if(write(fd,buf1,count)!=count) //调用write函数将缓冲区1的数据写入文件
{
printf("error,write file failed!\n");
exit(1);
}
if(lseek(fd,50,SEEK_SET)==-1)
{
printf("error,lseek failed!\n");
exit(1);
}
count=strlen(buf2);
if(write(fd,buf2,count)!=count) //调用write函数将缓冲区2的数据写入文件
{
printf("error,write file failed!\n");
exit(1);
}
return 0;
}
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。