linux c lseek (空洞檔案) 分析和處理

來源:互聯網
上載者:User

標籤:linux   c   lseek   

首先測試標準輸入是否可以進行lseek操作

[[email protected] 03]# cat ex03-lseek-01.c

/*檔案ex03-lseek-01.c,
使用lseek函數測試標準輸入是否可以進行seek操作*/
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>


int main(void)
{
  off_t offset = -1;


        /*將標準輸入檔案描述符的檔案位移量設為當前值*/
        offset = lseek(stdin, 0, SEEK_CUR);
        if(-1 == offset){
                /*設定失敗,標準輸入不能進行seek操作*/
                printf("STDIN can‘t seek\n");
                return -1;
        }else{
                /*設定成功,標準輸入可以進行seek操作*/
                printf("STDIN CAN seek\n");
        };
        return 0;

}

[[email protected] 03]# ./ex03-lseek-01
STDIN can‘t seek


----------------------------------------------------------------------------

[[email protected] 03]# cat ex03-lseek-02.c
/*檔案ex03-lseek-02.c,
使用lseek函數構建空洞檔案*/
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>


int main(void)
{
  int fd = -1,i;
  ssize_t size = -1;
  off_t offset = -1;
  /*存放資料的緩衝區*/
  char buf1[]="01234567";
  char buf2[]="ABCDEFGH";
  /*檔案名稱*/
  char filename[] = "hole.txt";
  int len = 8;


  /*建立檔案hole.txt*/
        fd = open(filename,O_RDWR|O_CREAT,S_IRWXU);
        if(-1 == fd){
                /*建立檔案失敗*/
          return -1;
        }


        /*將buf1中的資料寫入到檔案Hole.txt中*/
        size = write(fd, buf1,len);
        if(size != len){
                /*寫入資料失敗*/
                return -1;
        }


        /*設定檔案位移量為絕對值的32*/
        offset = lseek(fd, 32, SEEK_SET);
        if(-1 == offset){
                /*設定失敗*/
                return -1;
        }
        /*將buf2中的資料寫入到檔案hole.txt中*/
        size = write(fd, buf2,len);
        if(size != len){
                /*寫入資料失敗*/
                return -1;
        }


        /*關閉檔案*/
        close(fd);


        return 0;
}


[[email protected] 03]# cat hole.txt
01234567ABCDEFGH


[[email protected] 03]# od -c hole.txt              #16進位工具od查看
0000000   0   1   2   3   4   5   6   7  \0  \0  \0  \0  \0  \0  \0  \0
0000020  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0
0000040   A   B   C   D   E   F   G   H
0000050





相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.