您好,登錄后才能下訂單哦!
/*
#define FLAGS O_WRONLY|O_CREAT|O_TRUNC /定義參數(shù)flags:以讀寫方式打開文件,向文件添加內(nèi)容時(shí)從文件尾開始寫/
#define MODE 0600 /定義參數(shù)MODE:文件所有者讀寫方式/
#define FILENAME "/home/mrhe/test" /要進(jìn)行操作的文件/
int main(int argc, char argv[])
{
int count;
int fd;
char buf1[]={"abcdefghij"}; //緩沖區(qū)1,長度為10
char buf2[]={"1234567890"}; //緩沖區(qū)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) //調(diào)用write函數(shù)將緩沖區(qū)1的數(shù)據(jù)寫入文件
{
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) //調(diào)用write函數(shù)將緩沖區(qū)2的數(shù)據(jù)寫入文件
{
printf("error,write file failed!\n");
exit(1);
}
return 0;
}
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。