Linux下文件的读写操作( open read write)(2)

int fd = open(file_name,O_RDONLY);
if (fd<0) return -1;
long fsize = lseek(fd,0L,SEEK_END);
close(fd);

lseek用于文件位置定位
函数原形:off_t lseek(int fildes, off_t offset, int whence);

fildes,表示打开的文件描述符
offset,表示操作需要移动的相对量
whence,标示文件移动的方向
其取值有如下三种情况:
lseek(int fildes, off_t offset, SEEK_SET);
返回值即为文件开头起始之后的offset位置,seek的起始位置为文件头
lseek(int fildes, off_t offset, SEEK_CUR);
返回值即为文件当前偏移量+offset的值,seek的起始位置为当前位置
lseek(int fildes, off_t offset, SEEK_END);
返回值即为文件大小+offset,seed的起始位置为文件末尾
[offset 可正可负,表示相对位置的前后关系]

偏移量offset已字节为单元。在成功调用情况下的返回值表示相对于文件头的文件读取偏移量
在调用失败情况下,将返回-1


lseek将当前的文件偏移量记录在内核之中, 而并不会引起任何实际的I/O操作,之后的文件读/写操作将在该偏移量上执行.对与文件偏移量大于文件当前长度情况下, 对该文件的写操作将导致在文件中形成一段空洞,即那段没有写过字节的位移段被读为0..

所以,比较高效的求文件大小,就如前程序片断所示:

long fsize = lseek(fd,0L,SEEK_END);
offsize参数=0;
whence = SEEK_END;
返回值即为文件大小.

测试代码:

root@:/home/linuxidc/桌面/c++# cat -n file_copy.cpp
    1 
    2 #include <stdio.h>
    3 #include <string.h>
    4 #include <stdlib.h>
    5 #include <sys/types.h>
    6 #include <sys/stat.h>
    7 #include <unistd.h>
    8 #include <fcntl.h>
    9 #define BUFFER_SIZE 1024
    10 
    11 /*
    12  * 程序入口
    13  * */
    14 int main(int argc,char **argv)
    15 {
    16    int from_fd, to_fd;
    17    long file_len=0;
    18    int ret=1;
    19    char buffer[BUFFER_SIZE];
    20    char *ptr;
    21 
    22    /*判断入参*/
    23    if(argc!=3)
    24    {
    25        printf("Usage:%s fromfile tofile\n",argv[0]);
    26        exit(1);
    27    }
    28 
    29    /*打开源文件*/
    30    if((from_fd=open(argv[1], O_RDONLY|O_CREAT))==-1)
    31    {
    32        printf("Open %s Error\n",argv[1]);
    33        exit(1);
    34    }
    35 
    36    /*创建目的文件*/
    37    if((to_fd=open(argv[2], O_WRONLY|O_CREAT))==-1)
    38    {
    39        printf("Open %s Error\n",argv[2]);
    40        exit(1);
    41    }
    42 
    43    /*测得文件大小*/
    44    file_len= lseek(from_fd,0L,SEEK_END);
    45    lseek(from_fd,0L,SEEK_SET);
    46    printf("form file size is %d\n",file_len);
    47 
    48    /*进行文件拷贝*/
    49    while(ret)
    50    {
    51        ret= read(from_fd, buffer, BUFFER_SIZE);
    52        if(ret==-1)
    53        {
    54            printf("read Error\n");
    55            exit(1); 
    56        }
    57        write(to_fd, buffer, ret);
    58        file_len-=ret;
    59        bzero(buffer,BUFFER_SIZE);
    60    }
    61    printf("there are %d byte(s) data left without copy\n", file_len);
    62    close(from_fd);
    63    close(to_fd);
    64    exit(0);
    65 }
    66 
    67 
root@:/home/linuxidc/桌面/c++# g++ file_copy.cpp -o file_copy
file_copy.cpp: 在函数‘int main(int, char**)’中:
file_copy.cpp:46:45: 警告: 格式 ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘long int’ [-Wformat]
file_copy.cpp:61:69: 警告: 格式 ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘long int’ [-Wformat]
root@:/home/linuxidc/桌面/c++# vim file_copy.cpp
root@:/home/linuxidc/桌面/c++# ./file_copy  file_copy.cpp  test.cpp
form file size is 1348
there are 0 byte(s) data left without copy
root@:/home/linuxidc/桌面/c++# diff file_copy.cpp test.cpp
root@:/home/linuxidc/桌面/c++# 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/a0235ad3ce0fab5fd8e26bf61ae90235.html