• Linux系统编程:简单文件IO操作


    使用Linux的文件API,经常看见一个东西,叫做文件描述符.

    什么是文件描述符?

    (1)文件描述符其实实质是一个数字,这个数字在一个进程中表示一个特定的含义,当我们open打开一个文件时,操作系统在内存中构建了一些数据结构来表示这个动态文件,然后返回给应用程序一个数字作为文件描述符,这个数字就和我们内存中维护这个动态文件的这些数据结构挂钩绑定上了,以后我们应用程序如果要操作这一个动态文件,只需要用这个文件描述符进行区分。

    (2)文件描述符就是用来区分一个程序打开的多个文件的。

    (3)文件描述符的作用域就是当前进程,出了当前进程这个文件描述符就没有意义了

    (4)文件描述符fd的合法范围是0或者一个正数,不可能是一个负数

    (5)open返回的fd必须记录好,以后向这个文件的所有操作都要靠这个fd去对应这个文件,最后关闭文件时也需要fd去指定关闭这个文件。如果在我们关闭文件前fd丢了,那么这个文件就没法关闭了也没法读写了

    1)打开与读取文件

     1 #include <stdio.h>
     2 #include <sys/types.h>
     3 #include <sys/stat.h>
     4 #include <fcntl.h>
     5 #include <unistd.h>
     6 
     7 int main(int argc, char const *argv[]) {
     8 
     9     int fd = -1; //文件描述符
    10 
    11     //打开文件
    12     fd = open( "ghostwu.txt", O_RDWR );
    13 
    14     if ( -1 == fd ) {
    15         printf("文件打开失败
    ");
    16     }else {
    17         printf("文件打开成功,fd=%d
    ", fd );
    18     }
    19 
    20     //读取文件
    21     int count = 0;
    22     char buf[20];
    23     count = read( fd, buf, 50 );
    24     if ( -1 == count ) {
    25         printf("文件读取失败
    ");
    26     }else {
    27         printf("文件读取成功,实际读取的字节数目为:%d
    内容为%s
    ", count, buf );
    28     }
    29 
    30     //关闭文件
    31     close( fd );
    32 
    33     return 0;
    34 }

    需要在当前目录下存在ghostwu.txt这个文件,否则打开的时候失败,这里涉及2个api

    int open(const char *pathname, int flags);

    open非常简单,第一个参数就是文件路径, 第二个是文件模式,在man手册中还提供了其他几种方式。

    ssize_t read(int fd, void *buf, size_t count);

    第一个参数为文件描述符,就是open返回的那个值

    第二个参数buf用来存储从文件中读取的内容

    第三个参数,表示希望从文件中读取的内容( 注:这个count数字可以随便给,最终以返回的实际数目(read的返回值)为准

    2)打开与写入文件

     1 #include <stdio.h>
     2 #include <sys/types.h>
     3 #include <sys/stat.h>
     4 #include <fcntl.h>
     5 #include <unistd.h>
     6 #include <string.h>
     7 
     8 int main(int argc, char const *argv[]) {
     9 
    10     int fd = -1; //文件描述符
    11 
    12     //打开文件
    13     fd = open( "ghostwu.txt", O_RDWR );
    14 
    15     if ( -1 == fd ) {
    16         printf("文件打开失败
    ");
    17     }else {
    18         printf("文件打开成功,fd=%d
    ", fd );
    19     }
    20 
    21     //写文件
    22     char buf[] = "I love Linux, Linux is very very good!!!";
    23     int count = 0;
    24     count = write( fd, buf, strlen( buf ) );
    25     if ( -1 == count ) {
    26         printf("文件写入失败
    ");
    27     }else {
    28         printf("文件写入成功,实际写入的字节数目为:%d
    ", count);
    29     }
    30 
    31     //关闭文件
    32     close( fd );
    33 
    34     return 0;
    35 }

    ssize_t write(int fd, const void *buf, size_t count);

    第一个参数为文件描述符,就是open返回的那个值

    第二个参数buf用来存储写入的内容

    第三个参数,表示希望写入的文件大小

    3)open的一些flag参数

    1,只读与只写权限

     1 #include <stdio.h>
     2 #include <sys/types.h>
     3 #include <sys/stat.h>
     4 #include <fcntl.h>
     5 #include <unistd.h>
     6 
     7 int main(int argc, char const *argv[]) {
     8 
     9     int fd = -1; //文件描述符
    10 
    11     //打开文件, O_RDONLY:只读权限,打开之后的文件只能读取,不能写入
    12     //打开文件, O_WRONLY:只写权限,打开之后的文件只能写入,不能读取
    13     // fd = open( "ghostwu.txt", O_RDONLY );
    14     fd = open( "ghostwu.txt", O_WRONLY );
    15 
    16     if ( -1 == fd ) {
    17         printf("文件打开失败
    ");
    18     }else {
    19         printf("文件打开成功,fd=%d
    ", fd );
    20     }
    21 
    22     //读取文件
    23     int count = 0;
    24     char buf[41];
    25     count = read( fd, buf, 38 );
    26     if ( -1 == count ) {
    27         printf("文件读取失败
    ");
    28     }else {
    29         printf("文件读取成功,实际读取的字节数目为:%d
    内容为%s
    ", count, buf );
    30     }
    31 
    32     //关闭文件
    33     close( fd );
    34 
    35     return 0;
    36 }

    2,清空与追加

     1 #include <stdio.h>
     2 #include <sys/types.h>
     3 #include <sys/stat.h>
     4 #include <fcntl.h>
     5 #include <unistd.h>
     6 #include <string.h>
     7 
     8 int main(int argc, char const *argv[]) {
     9 
    10     int fd = -1; //文件描述符
    11 
    12     //打开文件
    13     //在O_RDWR模式下,对于一个已经存在的文件,且有内容,那么写入文件会覆盖对应大小的源文件内容【不是完全覆盖】
    14     // fd = open( "ghostwu.txt", O_RDWR );
    15     //在具有写入权限的文件中,使用O_TRUNC 会先把原来的内容清除,再写入新的内容
    16     // fd = open( "ghostwu.txt", O_RDWR | O_TRUNC );
    17     //在具有写入权限的文件中,使用O_APPEND 会把新内容追加到原来内容的后面
    18     // fd = open( "ghostwu.txt", O_RDWR | O_APPEND );
    19 
    20     //在具有写入权限的文件中,使用O_APPEND和O_TRUNC O_TRUNC起作用,会把原来的内容清除,再写入新的内容
    21     fd = open( "ghostwu.txt", O_RDWR | O_APPEND | O_TRUNC );
    22 
    23     if ( -1 == fd ) {
    24         printf("文件打开失败
    ");
    25         return -1;
    26     }else {
    27         printf("文件打开成功,fd=%d
    ", fd );
    28     }
    29 
    30     //写文件
    31     char buf[] = "new content";
    32     int count = 0;
    33     count = write( fd, buf, strlen( buf ) );
    34     if ( -1 == count ) {
    35         printf("文件写入失败
    ");
    36         return -1;
    37     }else {
    38         printf("文件写入成功,实际写入的字节数目为:%d
    ", count);
    39     }
    40 
    41     //关闭文件
    42     close( fd );
    43 
    44     return 0;
    45 }

    3,文件存在已否,创建文件与设置权限

     1 #include <stdio.h>
     2 #include <sys/types.h>
     3 #include <sys/stat.h>
     4 #include <fcntl.h>
     5 #include <unistd.h>
     6 #include <errno.h>
     7 
     8 int main(int argc, char const *argv[]) {
     9 
    10     int fd = -1;
    11 
    12     // fd = open( "ghostwu.txt", O_RDWR | O_CREAT | O_EXCL );
    13 
    14     /*
    15         文件不存在:
    16             创建这个文件 并打开成功
    17         文件存在:
    18             再次运行时(文件已经创建成功,存在了), 这时打开失败
    19     */
    20     // fd = open( "ghostwu.txt", O_RDWR | O_CREAT );
    21 
    22     fd = open( "ghostwu.txt", O_RDWR | O_CREAT | O_EXCL, 666 );
    23 
    24     if( -1 == fd ) {
    25         printf("文件打开失败,错误号:%d
    ", errno );
    26         perror( "open" );
    27         return -1;
    28     }else {
    29         printf("文件打开成功
    ");
    30     }
    31 
    32     close( fd );
    33 
    34     return 0;
    35 }

    上面用到了一个函数perror,errno和perror:

    1)errno就是error number,意思就是错误号码。linux系统中对各种常见错误做了个编号,当函数执行错误时,函数会返回一个特定的errno编号来告诉我们这个函数到底哪里错了

    2)errno是由操作系统来维护的一个全局变量,操作系统内部函数都可以通过设置errno来告诉上层调用者究竟刚才发生了一个什么错误

    3)errno本身实质是一个int类型的数字,每个数字编号对应一种错误。当我们只看errno时只能得到一个错误编号数字,并不知道具体错在哪里,所以:linux系统提供了一个函数perror(意思print error),perror函数内部会读取errno并且将这个不好认的数字直接给转成对应的错误信息字符串,然后打印出来

    4,lseek用来移动文件内部指针

    简单应用:统计文件大小

     1 #include <stdio.h>
     2 #include <sys/types.h>
     3 #include <sys/stat.h>
     4 #include <fcntl.h>
     5 #include <unistd.h>
     6 #include <errno.h>
     7 
     8 int main(int argc, char const *argv[]) {
     9 
    10     if ( argc != 2 ) {
    11         printf("usage:%s %s
    ", argv[0], "filename");
    12         return -1;
    13     }
    14 
    15     int fd = -1;
    16 
    17     fd = open( argv[1], O_RDWR );
    18 
    19     if( -1 == fd ) {
    20         printf("文件打开失败,错误号:%d
    ", errno );
    21         perror( "open" );
    22         return -1;
    23     }else {
    24         printf("文件打开成功
    ");
    25     }
    26 
    27     //把指针移动到文件末尾,就是文件的大小
    28     int count = lseek( fd, 0, SEEK_END );
    29 
    30     printf("文件大小为%d
    ", count);
    31 
    32     close( fd );
    33     return 0;
    34 }

    ------------------------------------------分割线------------------------------------------

    一、同一个进程,多次打开同一个文件,然后读出内容的结果是: 分别读【我们使用open两次打开同一个文件时,fd1和fd2所对应的文件指针是不同的2个独立的指针】

     1 #include <stdio.h>
     2 #include <sys/types.h>
     3 #include <sys/stat.h>
     4 #include <fcntl.h>
     5 #include <errno.h>
     6 #include <unistd.h>
     7 
     8 int main(int argc, char const *argv[]) {
     9 
    10     int fd1 = -1;
    11     int fd2 = -1;
    12     char buf1[20] = {0};
    13     char buf2[20] = {0};
    14     int count1 = 0;
    15     int count2 = 0;
    16 
    17     fd1 = open( "ghostwu.txt", O_RDWR );
    18 
    19     if ( -1 == fd1 ) {
    20         printf("文件打开失败
    ");
    21         perror( "open" );
    22         return -1;
    23     }else {
    24         printf("文件打开成功,fd1=%d
    ", fd1);
    25     }
    26 
    27     count1 = read( fd1, buf1, 5 );
    28     if ( -1 == count1 ) {
    29         printf( "文件读取失败
    " );
    30         perror( "read" );
    31     }else {
    32         printf( "文件读取成功,读取的内容是%s
    ", buf1 );
    33     }
    34 
    35     fd2 = open( "ghostwu.txt", O_RDWR );
    36 
    37     if ( -1 == fd1 ) {
    38         printf("文件打开失败
    ");
    39         perror( "open" );
    40         return -1;
    41     }else {
    42         printf("文件打开成功,fd2=%d
    ", fd1);
    43     }
    44 
    45     count2 = read( fd2, buf2, 10 );
    46     if ( -1 == count2 ) {
    47         printf( "文件读取失败
    " );
    48         perror( "read" );
    49     }else {
    50         printf( "文件读取成功,读取的内容是%s
    ", buf2 );
    51     }
    52 
    53     close( fd1 );
    54     close( fd2 );
    55 
    56     return 0;
    57 }

     二、同一个进程,多次打开同一个文件,然后写入内容的结果是: 分别写,当使用O_APPEND,就是接着写

     1 #include <stdio.h>
     2 #include <sys/types.h>
     3 #include <sys/stat.h>
     4 #include <fcntl.h>
     5 #include <errno.h>
     6 #include <unistd.h>
     7 #include <string.h>
     8 
     9 int main(int argc, char const *argv[]) {
    10 
    11     int fd1 = -1;
    12     int fd2 = -1;
    13     char buf1[] = "ghost";
    14     char buf2[] = "wu";
    15     int count1 = 0;
    16     int count2 = 0;
    17 
    18     fd1 = open( "ghostwu.txt", O_RDWR );
    19 
    20     if ( -1 == fd1 ) {
    21         printf("文件打开失败
    ");
    22         perror( "open" );
    23         return -1;
    24     }else {
    25         printf("文件打开成功,fd1=%d
    ", fd1);
    26     }
    27 
    28     count1 = write( fd1, buf1, strlen( buf1 ) );
    29     if ( -1 == count1 ) {
    30         printf( "文件写入失败
    " );
    31         perror( "write" );
    32     }else {
    33         printf( "文件写入成功,写入的内容是%s
    ", buf1 );
    34     }
    35 
    36     fd2 = open( "ghostwu.txt", O_RDWR );
    37 
    38     if ( -1 == fd1 ) {
    39         printf("文件打开失败
    ");
    40         perror( "open" );
    41         return -1;
    42     }else {
    43         printf("文件打开成功,fd2=%d
    ", fd1);
    44     }
    45 
    46     count2 = write( fd2, buf2, strlen( buf2 ) );
    47     if ( -1 == count2 ) {
    48         printf( "文件写入失败
    " );
    49         perror( "write" );
    50     }else {
    51         printf( "文件写入成功,写入的内容是%s
    ", buf2 );
    52     }
    53 
    54     close( fd1 );
    55     close( fd2 );
    56 
    57     return 0;
    58 }
    View Code

    上面代码保持不变,再写入的时候加入flag标志:

    fd1 = open( "ghostwu.txt", O_RDWR | O_APPEND );

    fd2 = open( "ghostwu.txt", O_RDWR | O_APPEND );

    三、 dup后的fd和原来打开文件的fd指向的是同一个文件,同时对这个文件写入时,是接着写

     1 #include <stdio.h>
     2 #include <sys/types.h>
     3 #include <sys/stat.h>
     4 #include <fcntl.h>
     5 #include <unistd.h>
     6 #include <string.h>
     7 
     8 int main(int argc, char const *argv[]) {
     9 
    10     int fd1 = -1;
    11     int fd2 = -1;
    12 
    13     fd1 = open( "ghostwu.txt", O_RDWR );
    14 
    15     if ( -1 == fd1 ) {
    16         perror( "open" );
    17         return -1;
    18     }else {
    19         printf("文件打开成功:fd=%d
    ", fd1);
    20     }
    21 
    22     //dup后的文件,同时write 是接着写入
    23     fd2 = dup( fd1 );
    24     printf("文件dup成功:fd=%d
    ", fd2);
    25 
    26     //分别向fd1和fd2指向的文件写入
    27 
    28     char buf1[] = "ghost";
    29     char buf2[] = "wu";
    30 
    31     int count1 = -1, count2 = -1;
    32 
    33     while ( 1 ) {
    34         count1 = write( fd1, buf1, strlen( buf1 ) );
    35         if ( -1 == count1 ) {
    36             perror( "buf1->write" );
    37             return -1;
    38         }else {
    39             printf("buf1->文件写入成功
    ");
    40         }
    41 
    42         sleep( 1 );
    43 
    44         count2 = write( fd2, buf2, strlen( buf2 ) );
    45         if ( -1 == count2 ) {
    46             perror( "buf2->write" );
    47             return -1;
    48         }else {
    49             printf("buf2->文件写入成功
    ");
    50         }
    51     }
    52 
    53     close( fd1 );
    54     close( fd2 );
    55     return 0;
    56 }
    View Code

    在linux系统中,内核占用了0、1、2这三个fd,当我们运行一个程序得到一个进程时,内部就默认已经打开了3个文件,

    对应的fd就是0、1、2。分别叫stdin、stdout、stderr。也就是标准输入、标准输出、标准错误。接下来,我们把标准输出关闭,printf就不会输出,如果用dup复制原来的fd,那么新dup出来的fd就是1(对应标准输出)

    之后标准输出的内容都会被写入到原来fd对应的那个文件

     1 #include <stdio.h>
     2 #include <sys/types.h>
     3 #include <sys/stat.h>
     4 #include <fcntl.h>
     5 #include <unistd.h>
     6 #include <string.h>
     7 
     8 int main(int argc, char const *argv[]) {
     9 
    10     int fd = -1;
    11 
    12     fd = open( "ghostwu2.txt", O_RDWR );
    13     if ( -1 == fd ) {
    14         perror( "open" );
    15         return -1;
    16     }else {
    17         printf( "文件打开成功fd=%d
    ", fd );
    18     }
    19 
    20     //fd=0 对应stdin  fd=1 对应 stdout  fd=2 对应stderror
    21     close( 1 ); //关闭fd=1的标准输出之后,printf输出看不见
    22 
    23     int newFd = -1;
    24 
    25     newFd = dup( fd ); //newFd一定是1, 因为分配后的fd从最小的没被占用的开始
    26     char buf[3];
    27     sprintf( buf, "%d", newFd ); //newFd转字符串型
    28     printf( "这是一段输出,由于newFd和fd关联到标准输出(newFd=1),会被写入到文件
    " );
    29     write( fd, buf, 1 );
    30 
    31     return 0;
    32 }
    View Code
  • 相关阅读:
    Script to Create Benchmark Procs
    自定义数据类型修改
    需求管理工具试用 – CaliberRM
    标识值重复的原因示例
    Vmware vFabric Suite开始支持自动化部署与PostgreSQL
    在ubuntu上安装Oracle Java SDK
    详解数据中心基础设施的模块化建设
    Xcode 4 无证书真机调试 环境配置
    Calculate_and_Insert_Event_Intervals_in_SQL2005_Profiler
    浏览器工作原理
  • 原文地址:https://www.cnblogs.com/ghostwu/p/8108438.html
Copyright © 2020-2023  润新知