標籤: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