溫馨提示×

溫馨提示×

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

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

請嘗試使用open、lseek等函數(shù)創(chuàng)建 一個(gè)含有空洞的文件

發(fā)布時(shí)間:2020-06-19 17:32:17 來源:網(wǎng)絡(luò) 閱讀:595 作者:銀河星君 欄目:編程語言

/*

  • 當(dāng)使用lseek函數(shù)定位到超出文件尾端之后,對于新寫入的數(shù)據(jù)需要分配磁盤塊,但是對于原文件
  • 尾端和新開始寫位置之間的部分則不需要分配磁盤塊,這會產(chǎn)生空洞文件,文件中的空洞并不要求
  • 在磁盤上占有存儲區(qū),具體處理方式與文件系統(tǒng)的實(shí)現(xiàn)有關(guān),請嘗試使用open、lseek等函數(shù)創(chuàng)建
  • 一個(gè)含有空洞的文件。
    */
    #include <sys/types.h>
    #include <unistd.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <sys/stat.h>
    #include <fcntl.h>
    #include <string.h>

#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;
}

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

免責(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)容。

AI