溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

[Linux文件]使用lseek函數(shù)的偏移量來分次寫入數(shù)據(jù)的實(shí)例

發(fā)布時(shí)間:2020-07-24 01:41:21 來源:網(wǎng)絡(luò) 閱讀:705 作者:銀河星君 欄目:編程語(yǔ)言
 //這是一個(gè)使用lseek在一個(gè)文件中連續(xù)寫入字符串的應(yīng)用
 #include <fcntl.h>
 #include <stdio.h>
 #include <string.h>
 int main(int argc,char *argv[])
 {
   int temp,seektemp,i,j;
   int fd;                                    //文件描述符
   char writebuf[17] = "this is a test!\n";   //字符串最后加上回車換行
   if(argc!= 2)                               //如果參數(shù)錯(cuò)誤
   {
   	 printf("Plz input the corrcet file name as './exam309lseekFun filename string'!\n");
   	 return 1;					//如果參數(shù)不正確則退出
   }
   fd = open(*(argv+1),O_RDWR|O_CREAT,S_IRWXU); //打開文件如果沒有則創(chuàng)建
   temp = write(fd,writebuf,sizeof(writebuf));	//寫入數(shù)據(jù)
   seektemp = lseek(fd,0,SEEK_CUR);             //獲得當(dāng)前的偏移量  
   for(i=0;i<10;i++)                            //連續(xù)寫入10個(gè)字符串
   {
     j = sizeof(writebuf) * (i+1);             //計(jì)算下一次的偏移量
     seektemp = lseek(fd,j,SEEK_SET);
     temp = write(fd,writebuf,strlen(writebuf));   //寫入數(shù)據(jù)
   }
   close(fd);                              //關(guān)閉文件
   return 0;
 }


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI