Linux应用开发基础知识——文件IO操作(三)

简介: Linux应用开发基础知识——文件IO操作(三)

       这 2 本书的内容类似,第一本对知识点有更细致的描述,适合初学者;第二 本比较直接,一上来就是各种函数的介绍,适合当作字典,不懂时就去翻看一下。 做纯 Linux 应用的入门,看这 2 本书就可以了,我们的侧重于“嵌入式 Linux”

一、文件IO

1.什么是文件:

       Linux 的文件既可以是真实保存到存储介质的文件也可以 是自身内核提供的虚拟文件,还可以是设备节点。

2.怎么知道这些函数的用法?

Linux 下有 3 大帮助方法:help、man、info

想查看某个命令的用法时,比如查看 ls 命令的用法,可以执行:

ls --help

help 只能用于查看某个命令的用法,而 man 手册既可以查看命令的用法,还可以查看函数的详细介绍等等。它含有 9 大分类,如下:

1 Executable programs or shell commands // 命令
2 System calls (functions provided by the kernel) // 系统调用,比如 man 2 open
3 Library calls (functions within program libraries) // 函数库调用
4 Special files (usually found in /dev) // 特殊文件, 比如 man 4 tty 
5 File formats and conventions eg /etc/passwd // 文件格式和约定, 比如 man 5 passwd
6 Games // 游戏
7 Miscellaneous (including macro packages and conventions), e.g. man(7), groff(7) //杂项
8 System administration commands (usually only for root) // 系统管理命令
9 Kernel routines [Non standard] // 内核例程

       比如想查看 open 函数的用法时,可以直接执行“man open”,发现这不是 想要内容时再执行“man 2 open”。

       在 man 命令中可以及时按“h”查看帮助信息了解快捷键。常用的快捷键是:

f 往前翻一页
b 往后翻一页
/patten 往前搜
?patten 往后搜

        就内容来说,info 手册比 man 手册编写得要更全面,但 man 手册使用起来 更容易些。

       以书来形容 info 手册和 man 手册的话,info 手册相当于一章,里面含有若干节,阅读时你需要掌握如果从这一节跳到下一节;而 man 手册只相当于一节, 阅读起来当然更容易。

3.文件IO的分类

标准IO:   fopen/fread/fwrite/fseek/fflush/fclose

系统IO: open/read /write/lseek/close

 

这2种IO函数的区别:

二、使用open函数打开文件

1.用man命令进行查看文件使用方法

man 2 open

函数作用:

作用:打开或者创建一个文件

pathname: 文件路径名,或者文件名

flags:表示打开文件所采用的操作

O_RDONLY:只读模式

O_WRONLY:只写模式

O_RDWR:可读可写

O_APPEND:表示追加,如果原来文件里面有内容,则这次写入会写在文件的最末尾。

O_REAT:表示如果指定文件不存在,则创建这个文件

O_EXCL:表示如果要创建的文件已存在,则出错,同时返回--1,并且修改·errno·的值。

O_TRUNC:表示截断,如果文件存在,并且以只写、读写方式打开,则将其长度截断为0。“

2.open.c 源码如下:

 
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>
/*
*./open_ 1.txt
*argc    = 2
*argv[0] = "./open"
*argv[1] = "1.txt"
*/
int main(int argc, char **argv)
{
    int fd;
        if(argc != 2)
        {
                printf("Uage:%s <file>\n",argv[0]);
        return -1;
        }
 
    fd = open(argv[1],O_RDWR);
    if (fd < 0)
    {
        printf("can not open file %s\n",argv[1]);
        printf("errno = %d\n",errno);
        printf("err: %s\n",strerror(errno));
        perror("open");
    }
    else
    {
        printf("fd = %d\n",fd);
    }
    while(1)
    {
         sleep(10);
    }
 
    close(fd);
    return 0;
}

三、使用open函数创建文件

设置创建文件并开启权限

fd = open(argv[1],O_RDWR | O_CREAT | O_TRUNC,0644);

create.c 源码如下:

 
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>
/*
*./create   1.txt
*argc    = 2
*argv[0] = "./create"
*argv[1] = "1.txt"
*/
int main(int argc, char **argv)
{
    int fd;
        if(argc != 2)
        {
                printf("Uage:%s <file>\n",argv[0]);
        return -1;
        }
 
    fd = open(argv[1],O_RDWR | O_CREAT | O_TRUNC,0644);
    if (fd < 0)
    {
        printf("can not open file %s\n",argv[1]);
        printf("errno = %d\n",errno);
        printf("err: %s\n",strerror(errno));
        perror("open");
    }
    else
    {
        printf("fd = %d\n",fd);
    }
    while(1)
    {
         sleep(10);
    }
 
    close(fd);
    return 0;
}
 

四、使用write函数写文件

1.用man命令进行查看文件使用方法

2 .write.c 源码如下:

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>
/*
*./write   1.txt  str1 str2
*argc    >= 3
*argv[0] = "./write"
*argv[1] = "1.txt"
*/
int main(int argc, char **argv)
{
    int fd;
    int i;
    int len;
    if(argc < 3)
    {
        printf("Uage:%s <file> <string1> <string2> ...\n",argv[0]);
        return -1;
    }
 
    fd = open(argv[1],O_RDWR | O_CREAT | O_TRUNC,0644);
    if (fd < 0)
    {
        printf("can not open file %s\n",argv[1]);
        printf("errno = %d\n",errno);
        printf("err: %s\n",strerror(errno));
        perror("open");
    }
    else
    {
        printf("fd = %d\n",fd);
    }
 
    for(i = 2; i < argc; i ++)
    {
       len =  write(fd,argv[i],strlen(argv[i]));
       if(len != strlen(argv[i]))
       {
           perror("write");
           break;
       }
       write(fd,"\r\n",2);
    }
 
    close(fd);
    return 0;
}
 

五、lseek中间插入

1.用man命令进行查看文件使用方法

2 .write_in_poc.c 源码如下:

 
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>
/*
*./write   1.txt  str1 str2
*argc    >= 3
*argv[0] = "./write"
*argv[1] = "1.txt"
*/
int main(int argc, char **argv)
{
    int fd;
    int i;
    int len;
    if(argc != 2)
    {
        printf("Uage:%s <file>\n",argv[0]);
        return -1;
    }
 
    fd = open(argv[1],O_RDWR | O_CREAT,0644);
    if (fd < 0)
    {
        printf("can not open file %s\n",argv[1]);
        printf("errno = %d\n",errno);
        printf("err: %s\n",strerror(errno));
        perror("open");
    }
    else
    {
        printf("fd = %d\n",fd);
    }
 
    printf("lseek to offset 3 from file head\n");
    lseek(fd,3,SEEK_SET);
 
    write(fd,"123",3);
 
    close(fd);
    return 0;
}

六、读写文件

1.通用的 IO 模型:open/read/write/lseek/close

copy.c 源码如下:

 
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdio.h>
 
/*
 * ./copy 1.txt 2.txt
 * argc    = 3
 * argv[0] = "./copy"
 * argv[1] = "1.txt"
 * argv[2] = "2.txt"
 */
int main(int argc, char **argv)
{
        int fd_old, fd_new;
        char buf[1024];
        int len;
 
        /* 1. 判断参数 */
        if (argc != 3)
        {
                printf("Usage: %s <old-file> <new-file>\n", argv[0]);
                return -1;
        }
 
        /* 2. 打开老文件 */
        fd_old = open(argv[1], O_RDONLY);
        if (fd_old == -1)
        {
                printf("can not open file %s\n", argv[1]);
                return -1;
        }
 
        /* 3. 创建新文件 */
        fd_new = open(argv[2], O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
        if (fd_new == -1)
        {
                printf("can not creat file %s\n", argv[2]);
                return -1;
        }
 
        /* 4. 循环: 读老文件-写新文件 */
        while ((len = read(fd_old, buf, 1024)) > 0)
        {
                if (write(fd_new, buf, len) != len)
                {
                        printf("can not write %s\n", argv[2]);
                        return -1;
                }
        }
 
        /* 5. 关闭文件 */
        close(fd_old);
        close(fd_new);
 
        return 0;
}
 
1. book@100ask:~/source/06_fileio$ gcc -o copy copy.c
2. book@100ask:~/source/06_fileio$ ./copy copy.c new.c

2.不是通用的函数:ioctl/mmap

copy_mmap.c 源码如下:

 
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdio.h>
#include <sys/mman.h>
 
/*
 * ./copy 1.txt 2.txt
 * argc    = 3
 * argv[0] = "./copy"
 * argv[1] = "1.txt"
 * argv[2] = "2.txt"
 */
int main(int argc, char **argv)
{
        int fd_old, fd_new;
        struct stat stat;
        char *buf;
 
        /* 1. 判断参数 */
        if (argc != 3)
        {
                printf("Usage: %s <old-file> <new-file>\n", argv[0]);
                return -1;
        }
 
        /* 2. 打开老文件 */
        fd_old = open(argv[1], O_RDONLY);
        if (fd_old == -1)
        {
                printf("can not open file %s\n", argv[1]);
                return -1;
        }
 
        /* 3. 确定老文件的大小 */
        if (fstat(fd_old, &stat) == -1)
        {
                printf("can not get stat of file %s\n", argv[1]);
                return -1;
        }
 
        /* 4. 映射老文件 */
        buf = mmap(NULL, stat.st_size, PROT_READ, MAP_SHARED, fd_old, 0);
        if (buf == MAP_FAILED)
        {
                printf("can not mmap file %s\n", argv[1]);
                return -1;
        }
 
        /* 5. 创建新文件 */
        fd_new = open(argv[2], O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
        if (fd_new == -1)
        {
                printf("can not creat file %s\n", argv[2]);
                return -1;
        }
 
        /* 6. 写新文件 */
        if (write(fd_new, buf, stat.st_size) != stat.st_size)
        {
                printf("can not write %s\n", argv[2]);
                return -1;
        }
 
        /* 5. 关闭文件 */
        close(fd_old);
        close(fd_new);
 
        return 0;
}
1. book@100ask:~/source/06_fileio$ gcc -o copy_mmap copy_mmap.c
2. book@100ask:~/source/06_fileio$ ./copy_mmap copy_mmap.c new2.c

七、内核接口

1.系统调用函数怎么进入内核?

       以 open/read 为例,从用户态调用 API 触发异常进入内核的过程,最后调用的 sys_call_table 的函数指针数组如下:

2.内核的 sys_open、sys_read 会做什么?

       进入内核后,sys_read/open 会首先根据参数判断文 件的类型,然后根据不同的文件类型去找不同的设备驱动,继而进行读写或者输 入输出控制。

目录
相关文章
|
23天前
|
Linux 数据安全/隐私保护 Windows
命令方式:window向linux传文件
【10月更文挑战第6天】本文介绍了如何在Linux系统中通过命令`ip a`获取IP地址,并在Windows系统下使用CMD命令行工具和SCP命令实现文件传输。示例展示了如何将D盘中的`mm.jar`文件上传至IP地址为192.168.163.122的Linux系统的/up/目录下,最后在Linux系统中确认文件传输结果。
212 65
|
25天前
|
网络协议 安全 Linux
Linux C/C++之IO多路复用(select)
这篇文章主要介绍了TCP的三次握手和四次挥手过程,TCP与UDP的区别,以及如何使用select函数实现IO多路复用,包括服务器监听多个客户端连接和简单聊天室场景的应用示例。
83 0
|
25天前
|
存储 Linux C语言
Linux C/C++之IO多路复用(aio)
这篇文章介绍了Linux中IO多路复用技术epoll和异步IO技术aio的区别、执行过程、编程模型以及具体的编程实现方式。
66 1
Linux C/C++之IO多路复用(aio)
|
11天前
|
运维 安全 Linux
Linux中传输文件文件夹的10个scp命令
【10月更文挑战第18天】本文详细介绍了10种利用scp命令在Linux系统中进行文件传输的方法,涵盖基础文件传输、使用密钥认证、复制整个目录、从远程主机复制文件、同时传输多个文件和目录、保持文件权限、跨多台远程主机传输、指定端口及显示传输进度等场景,旨在帮助用户在不同情况下高效安全地完成文件传输任务。
100 5
|
11天前
|
Linux Shell 数据库
Linux文件查找新姿势:总有一种你没见过
【10月更文挑战第18天】文件查找是Linux用户提升工作效率的重要技能。本文介绍了几种实用的文件查找方法,包括基础的`find`命令、快速的`locate`和`mlocate`、高效的`fd`工具、以及结合`grep`和`rg`进行内容搜索。此外,还提供了编写Shell脚本和使用图形界面工具的建议,帮助你更灵活地管理文件。
42 3
|
22天前
|
Linux 开发工具 数据安全/隐私保护
linux异常一:feng 不在 sudoers 文件中,此事将被报告。yum提示Another app is currently holding the yum lock; waiting for
这篇文章介绍了在CentOS 7系统中安装Docker时遇到的两个常见问题及其解决方法:用户不在sudoers文件中导致权限不足,以及yum被锁定的问题。
33 2
linux异常一:feng 不在 sudoers 文件中,此事将被报告。yum提示Another app is currently holding the yum lock; waiting for
|
2天前
|
Linux Shell 数据库
文件查找是Linux用户日常工作的重要技能介绍了几种不常见的文件查找方法
文件查找是Linux用户日常工作的重要技能。本文介绍了几种不常见的文件查找方法,包括使用`find`和`column`组合、`locate`和`mlocate`快速查找、编写Shell脚本、使用现代工具`fd`、结合`grep`搜索文件内容,以及图形界面工具如`Gnome Search Tool`和`Albert`。这些方法能显著提升文件查找的效率和准确性。
12 2
|
6天前
|
Linux 数据库
linux 全局搜索文件
在 Linux 系统中,全局搜索文件常用 `find`、`locate` 和 `grep` 命令。`find` 根据文件名、类型、大小、时间戳等条件搜索;`locate` 通过预构建的数据库快速查找文件;`grep` 在文件中搜索特定文本,常与 `find` 结合使用。选择合适的命令取决于具体需求。
|
9天前
|
Linux 开发工具 Perl
Linux命令替换目录下所有文件里有"\n"的字符为""如何操作?
【10月更文挑战第20天】Linux命令替换目录下所有文件里有"\n"的字符为""如何操作?
26 4
|
8天前
|
运维 安全 Linux
Linux文件清空的五种方法总结分享
每种方法各有优势,选择最合适的一种或几种,可以极大提高您的工作效率。更多有关Linux系统管理的技巧与资源,欢迎访问,持续提升您的运维技能。
54 1