Linux之操作文件的系统调用
目录
- 1.打开文件
- 参数介绍
- 2. 读文件
- 3. 写文件
- 4.关闭
- 分析题
- 练习题
- 系统调用和库函数的区别
#inlcude
1.打开文件 打开一个已存在的文件
int open(const char *pathname, int flags);
新建一个文件并创建权限
int open(const char *pathname, int flags, mode_t mode);
参数介绍
pathname:将要打开的文件路径和名称
flags:打开标志
标志介绍:
Theargumentflagsmustincludeone of the following access modes:O_RDONLY, O_WRONLY, or O_RDWR.These request openingthefileread-only, write-only, or read/write, respectively.
O_RDONLY 只读打开
O_RDWR 读写打开
O_CREAT 文件不存在则创建
O_APPEND 文件末尾追加
O_TRUNC 清空文件,重新写入 mode
The following symbolic constants are provided for mode:S_IRWXU00700 user (file owner) has read,write,andexecute permissionS_IRUSR00400 user has read permissionS_IWUSR00200 user has write permissionS_IXUSR00100 user has execute permissionS_IRWXG00070 group has read, write, and execute permissionS_IRGRP00040 group has read permissionS_IWGRP00020 group has write permissionS_IXGRP00010 group has execute permissionS_IRWXO00007 others have read, write, and execute permissionS_IROTH00004 others have read permissionS_IWOTH00002 others have write permissionS_IXOTH00001 others have execute permission
返回值:文件描述符
2. 读文件
ssize_t read(int fd, void *buf, size_t count);
参数介绍
fd:对应打开的文件描述符buf : 存放数据的空间count: 计划一次从文件中读多少字节数据返回值: 实际读到的字节数
3. 写文件
ssize_t write(int fd, const void *buf, size_t count);
参数介绍:
fd :对应打开的文件描述符buf:存放待写入的数据count:计划一次向文件中写入多少数据
4.关闭
int close(int fd);
fd :对应的文件描述符
分析题 如果父进程先打开一个文件,fork 后子进程是否可以共享使用?
【Linux之操作文件的系统调用】文件内容
文章图片
代码
#include#include#include#include #includeint main(){char buff[128] = {0}; int fd = open("myfile.txt", O_RDONLY); pid_t pid = fork(); assert(pid != -1); if (pid == 0){read(fd, buff, 1); printf("child buff = %s\n", buff); sleep(1); read(fd, buff, 1); printf("child buff = %s\n", buff); }else{read(fd, buff, 1); printf("parent buff = %s\n", buff); sleep(1); read(fd, buff, 1); printf("parent buff = %s\n", buff); }close(fd); exit(0); }
运行结果:
文章图片
结论:
由于 fork 创建的子进程的 PCB 是拷贝父进程的,子进程的 PCB 中的文件表指向打开文件的指针只是拷贝了父进程 PCB 中的值,所以父子进程共享父进程 fork 之前打开的所有文件描述符。
文章图片
练习题 完成对一个文件的复制(类似命令:cp)
原文件内容为:
文章图片
代码:
#include#include#include #include#includeint main(void){char buff[128] = {0}; int fdr = open("myfile.txt", O_RDONLY); assert(fdr != -1); int fdw = open("newfile.txt", O_WRONLY | O_CREAT, 0600); assert(fdw != -1); int n = 0; while (n = read(fdr, buff, 128) > 0){write(fdw, buff, n); }close(fdr); close(fdw); exit(0); }
运行示例:
可以看到newfile.txt创建成功
文章图片
系统调用和库函数的区别 区别: 系统调用的实现在内核中,属于内核空间,库函数的实现在函数库中,属于用户空间。
系统调用执行过程:
文章图片
到此这篇关于Linux之操作文件的系统调用的文章就介绍到这了,更多相关Linux文件系统调用内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
推荐阅读
- PMSJ寻平面设计师之现代(Hyundai)
- 太平之莲
- 2.6|2.6 Photoshop操作步骤的撤消和重做 [Ps教程]
- 闲杂“细雨”
- 七年之痒之后
- 深入理解Go之generate
- 由浅入深理解AOP
- 期刊|期刊 | 国内核心期刊之(北大核心)
- 生活随笔|好天气下的意外之喜
- 感恩之旅第75天