Linux中对文件的操作(一)

linux中对文件进行操作

open函数

*int open(const char pathname, int flags);
pathname:指的是文件名
flags:权限 只读打开O_RDONLY 只写打开O_WRONLY 可读可写打开O_RDWR 以上三个参数中应当只指定一个。

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>int main(){
//int open(const char *pathname, int flags);int fd;fd = open("./file1",O_RDWR);printf("fd = %d\n",fd);	//返回3,若file1不存在则返回-1return 0;
}

下面的参数是可以选择的:
O_CREAT 若文件不存在则创建它,使用这个选项时,需要同时说明第三个参数mode,用其说明该文件的存取许可权限。

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>int main(){int fd;fd = open("./file1",O_RDWR);if(fd == -1){printf("open file failed!\n");fd = open("./file1",O_RDWR|O_CREAT,0600);	//可读 r 4 可写 w 2 可执行 x 1;6=4+2 可读可写if(fd > 0){printf("open file success!\n");}}return 0;
}

O_EXCL 如果同时指定了O_CREAT,而文件已经存在,则出错使fd=-1;

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>int main(){int fd;fd = open("./file1",O_RDWR|O_CREAT|O_EXCL,0600);if(fd == -1){printf("file cunzai\n");}return 0;
}

运行结果:
file cunzai
因为当前目录中已经存在file1这个文件了。如果此时不存在,则运行这段代码不会报错,因此运行结果不会有任何反应。
O_APPEND 每次写都加到文件的尾端
在我们正常使用write写入数据时,会将自己的数据覆盖之前的数据(区别于O_TRUNC,O_APPEND不会清空之前的数据,而是覆盖之前的字节,如果之前的数据多于新写入的数据,那么多的部分不会被清空),如果我们想要在之前的基础上写入数据,就需要用到这个参数

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>int main(){int fd;char *buf = "wlw is so handsome";fd = open("./file1",O_RDWR|O_APPEND);if(fd == -1){printf("open file failed!\n");fd = open("./file1",O_RDWR|O_CREAT|O_APPEND,0600);if(fd > 0){printf("create file success!\n");}}printf("open success! fd = %d\n",fd);//ssize_t write(int fd, const void *buf, size_t count);write(fd,buf,strlen(buf));close(fd);return 0;
}

运行之后,会在原来的基础上换行写入数据。

O_TRUNC 打开文件时,如果这个文件中本来是有内容的,而且为只读或只写成功打开,则将其长度截短为0


#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>int main(){int fd;char *buf = "test";fd = open("./file1",O_RDWR|O_TRUNC);if(fd == -1){printf("open file failed!\n");fd = open("./file1",O_RDWR|O_CREAT|O_APPEND,0600);if(fd > 0){printf("create file success!\n");}}printf("open success! fd = %d\n",fd);//ssize_t write(int fd, const void *buf, size_t count);write(fd,buf,strlen(buf));close(fd);return 0;
}

加入O_TRUNC参数会把原先的内容清空,再加入自己需要的内容。
此外open函数还可以添加第三个参数,mode_t mode,一定是在flags中使用了O_CREAT标志,mode记录待创建的文件的访问权限。

write函数

*ssize_t write(int fd, const void buf, size_t count);
fd 通过open函数后,会返回一个文件描述符fd
buf 缓冲区
count 写入文件的大小
将缓冲区buf中的数据写count个字符进入到fd指向的文件中写入成功时,返回写入的字节数,读取失败返回-1.

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>int main(){int fd;char *buf = "hello world!";fd = open("./file1",O_RDWR);if(fd == -1){printf("open file failed!\n");fd = open("./file1",O_RDWR|O_CREAT,0600);if(fd > 0){printf("create file success!\n");}}printf("open success! fd = %d\n",fd);//ssize_t write(int fd, const void *buf, size_t count);write(fd,buf,strlen(buf));close(fd);return 0;
}

注意:在本段代码中,如果将write的第三个参数修改为sizeof(buf)只会显示8个字符,因为buf属于指针类型,sizeof(buf)只会分配指针的大小,在linux系统中为指针分配的8字节大小。

close

int close(int fd);
只需给出文件的fd即可关闭该文件

read

*ssize_t read(int fd, void buf, size_t count);
将fd指向文件的count大小的字符读入到buf中去。读取成功时,返回读取的字节数,读取失败返回-1.

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>int main(){int fd;char *buf = "wlw is handsome";fd = open("./file1",O_RDWR);if(fd == -1){printf("open file failed!\n");fd = open("./file1",O_RDWR|O_CREAT,0600);if(fd > 0){printf("create file success!\n");}}printf("open success! fd = %d\n",fd);//ssize_t write(int fd, const void *buf, size_t count);int n_write = write(fd,buf,strlen(buf));if(n_write != -1){printf("write %d byte to file\n",n_write);}char *readBuf;readBuf = (char *)malloc(sizeof(char)*n_write);//ssize_t read(int fd, void *buf, size_t count);int n_read = read(fd,readBuf,n_write);printf("read:%d byte,context:%s\n",n_read,readBuf);close(fd);return 0;
}

执行后会显示
open success! fd = 3
write 15 byte to file
read:1 byte,context:

内容被不能被读取出来,这就涉及了光标的问题,当我们写入字符后,光标会在最后一位上,那此时我们进行read操作,只会从最后开始读,自然什么也读不到。因此我们需要将光标移到头,或者重新打开。

重新打开解决光标问题


#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>int main(){int fd;char *buf = "wlw is handsome";fd = open("./file1",O_RDWR);if(fd == -1){printf("open file failed!\n");fd = open("./file1",O_RDWR|O_CREAT,0600);if(fd > 0){printf("create file success!\n");}}printf("open success! fd = %d\n",fd);//ssize_t write(int fd, const void *buf, size_t count);int n_write = write(fd,buf,strlen(buf));if(n_write != -1){printf("write %d byte to file\n",n_write);}close(fd);      //关闭fd = open("./file1",O_RDWR);    //重新打开char *readBuf;readBuf = (char *)malloc(sizeof(char)*n_write);//ssize_t read(int fd, void *buf, size_t count);int n_read = read(fd,readBuf,n_write);printf("read:%d byte,context:%s\n",n_read,readBuf);close(fd);return 0;
}

运行结果为:
open success! fd = 3
write 15 byte to file
read:15 byte,context:wlw is handsome
在write写完之后进行关闭重新打开,此时光标会回到第一个位置,就可以通过read进行读取,解决了光标的问题。

光标移动操作解决光标问题

lseek

off_t lseek(int fd, off_t offset, int whence);
将fd指向文件的文件读写指针(光标)相对whence移动offset个字节
whence:可以选择
SEEK_SET:头
SEEK_END :尾
SEEK_CUR:当前位置

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>int main(){int fd;char *buf = "wlw is handsome";fd = open("./file1",O_RDWR);if(fd == -1){printf("open file failed!\n");fd = open("./file1",O_RDWR|O_CREAT,0600);if(fd > 0){printf("create file success!\n");}}printf("open success! fd = %d\n",fd);//ssize_t write(int fd, const void *buf, size_t count);int n_write = write(fd,buf,strlen(buf));if(n_write != -1){printf("write %d byte to file\n",n_write);}//off_t lseek(int fd, off_t offset, int whence);        lseek(fd,0,SEEK_SET);	//移动光标char *readBuf;readBuf = (char *)malloc(sizeof(char)*n_write);//ssize_t read(int fd, void *buf, size_t count);int n_read = read(fd,readBuf,n_write);printf("read:%d byte,context:%s\n",n_read,readBuf);close(fd);return 0;
}

运行结果:
open success! fd = 3
write 15 byte to file
read:15 byte,context:wlw is handsome
另外在修改光标位置时,也可以利用SEEK_CUR或者SEEK_END来进行偏移,注意!偏移量为正数时向后偏移,偏移量为负数时向前偏移。

利用lseek函数来计算文件大小

lseek的返回值为当前光标较文件起始位置的偏移量,因此我们可以用lseek来计算出文件大小:

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>int main(){int fd;char *buf = "wlw is handsome";fd = open("./file1",O_RDWR);int filesize = lseek(fd,0,SEEK_END);printf("file size is :%d\n",filesize);close(fd);return 0;
}

运行结果:
file size is :15

creat

*int creat(const char pathname, mode_t mode);
根据创建模式(权限)创建文件
creat常见创建模式:
宏表示 数字
S_IRUSR 4 可读
S_IWUSR 2 可写
S_IXUSR 1 可执行
S_IRWXU 7 可读、写、执行

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>int main(){int fd;char *buf = "wlw is handsome";//int creat(const char *pathname, mode_t mode);fd = creat("./file1",S_IRWXU);printf("creat file1 success!\n");fd = open("./file1",O_RDWR);write(fd,buf,strlen(buf));printf("write file1 success!\n");return 0;
}

最后分享几个在linux命令行中的快捷操作
复制 yy
多行复制 行数+yy
粘贴 p
撤回 u
重做 Ctrl+r
删除整行 dd
删除大段代码 d+↓
缩进 左:<<
右:>>
多行缩进 行数+<<或者行数+>>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/7178.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

首届云原生编程挑战赛总决赛亚军比赛攻略(ONE PIECE团队)

关联比赛: 首届云原生编程挑战赛【复赛】实现一个 Serverless 计算服务调度系统 比赛攻略—ONE PIECE团队 代码链接&#xff1a; 初赛&#xff1a;GitHub - czy-gm/containerScheduler: 2020天池首届云原生编程挑战赛亚军-初赛赛道二&#xff08;实现规模化容器静态布局和动…

高项-案例分析万能答案(作业分享)

项目管理&#xff1a;每天进步一点点~ 活到老&#xff0c;学到老 ヾ(◍∇◍)&#xff89;&#xff9e; 何时学习都不晚&#xff0c;加油 一、通用问题原因: 1.项目经理管理经验不足&#xff0c;没有及时发现和解决xx方面的问题。 2.项目管理计划没有得到关键干系人的评审确…

yum常用命令与lrzsz的在线安装

yum命令 yum&#xff08; Yellow dog Updater, Modified&#xff09;是一个在 Fedora 和 RedHat 以及 SUSE 中的 Shell 前端软件包管理器。 基于 RPM 包管理&#xff0c;能够从指定的服务器自动下载 RPM 包并且安装&#xff0c;可以自动处理依赖性关系&#xff0c;并且一次安装…

php基础知识快速入门

一、PHP基本知识 1、php介绍&#xff1a; php是一种创建动态交互性的强有力的服务器脚本语言&#xff0c;PHP是开源免费的&#xff0c;并且使用广泛。PHP是解释性语言&#xff0c;按顺序从上往下执行&#xff0c;无需编译&#xff0c;直接运行。PHP脚本在服务器上运行。 2、ph…

动态规划(dp)(二)

按摩师 按摩师 1.状态表示 dp【i】表示&#xff1a;到i位置时&#xff0c;此时最长时长 继续细化&#xff1a;在i位置选预约&#xff0c;或不选预约 f【i】&#xff1a;到i位置时&#xff0c;nums【i】必选的&#xff0c;最长时长 g【i】&#xff1a;到i位置时&#xff0c…

仅为娱乐,Python中如何重定义True为False?

在Python中&#xff0c;True 和 False 是内建的布尔常量&#xff0c;分别代表逻辑上的真和假。它们是不可变的&#xff0c;且在Python语言规范中具有特殊地位&#xff0c;不能被用户直接重定义。尝试给 True 或 False 赋予新的值是违反Python语言规则的&#xff0c;这样的操作会…

刷题记录4.17-5.6

文章目录 刷题记录27.移除元素977.有序数组的平方209.长度最小的子数组707.设计链表206.反转链表24.两两交换链表中的节点19.删除链表的倒数第N个节点142.环形链表II242.有效的字母异位词349.两个数组的交集454.四数相加II18.四数之和151.反转字符串中的单词459.重复的子字符串…

Educational Codeforces Round 165 (Rated for Div. 2) E. Unique Array 贪心+线段树

Unique Array 题目描述 给你一个长度为 n n n 的整数数组 a a a 。 a a a 的子数组是其连续的子序列之一&#xff08;即数组 [ a l , a l 1 , … , a r ] [a_l, a_{l1}, \dots, a_r] [al​,al1​,…,ar​] 中的某个整数 l l l 和 r r r 的子数组 1 ≤ l < r ≤ n …

如何检查 MIDI 文件的安全性

检查 MIDI 文件的安全性通常涉及几个步骤&#xff0c;因为 MIDI 文件本身并不包含可执行代码&#xff0c;所以它们不是传统意义上的恶意软件载体。然而&#xff0c;它们仍然可能以间接的方式带来安全风险&#xff0c;例如通过诱导用户下载与 MIDI 文件一起提供的恶意附件或链接…

JS基础:变量的详解

你好&#xff0c;我是云桃桃。 一个希望帮助更多朋友快速入门 WEB 前端的程序媛。 云桃桃&#xff0c;大专生&#xff0c;一枚程序媛&#xff0c;感谢关注。回复 “前端基础题”&#xff0c;可免费获得前端基础 100 题汇总&#xff0c;回复 “前端基础路线”&#xff0c;可获取…

Leetcode181_超过经理收入的员工

1.leetcode原题链接:. - 力扣&#xff08;LeetCode&#xff09; 2.题目描述 表&#xff1a;Employee ---------------------- | Column Name | Type | ---------------------- | id | int | | name | varchar | | salary | int | | manage…

零基础入门学习Python第二阶01生成式(推导式),数据结构

Python语言进阶 重要知识点 生成式&#xff08;推导式&#xff09;的用法 prices {AAPL: 191.88,GOOG: 1186.96,IBM: 149.24,ORCL: 48.44,ACN: 166.89,FB: 208.09,SYMC: 21.29}# 用股票价格大于100元的股票构造一个新的字典prices2 {key: value for key, value in prices.i…

病毒及网络攻击(信息安全)

一、病毒 计算机病毒的特征&#xff1a;传播性、隐蔽性、感染性、潜伏性、触发性、破坏性等 Worm -- 蠕虫病毒 Trojan -- 特洛伊木马 Backdoor -- 后门病毒 Macro -- 宏病毒 宏病毒 感染的对象主要是 文本文档、电子表格等 木马病毒&#xff1a;冰河 蠕虫病毒&#xff1a;欢乐时…

Java的java.util.concurrent.ExecutorService简介

在Java并发编程的璀璨星空中&#xff0c;ExecutorService无疑是那颗最耀眼的明星。它不仅是Java并发编程的核心组件之一&#xff0c;更是构建高并发、高性能应用的秘密武器。今天&#xff0c;我们就来一场说走就走的探索之旅&#xff0c;揭开它的神秘面纱&#xff01; &#x1…

关于排序算法这一篇就够了

排序算法是计算机科学中的一个基本问题&#xff0c;它涉及到将一组数据元素&#xff08;如整数、浮点数、字符串等&#xff09;按照某种顺序&#xff08;如升序或降序&#xff09;进行排列。以下是您提到的几种排序算法的概念和相应的Java实现&#xff1a; 1. 冒泡排序&#x…

已解决javax.sound.sampled.LineUnavailableException异常的正确解决方法,亲测有效!!!

已解决javax.sound.sampled.LineUnavailableException异常的正确解决方法&#xff0c;亲测有效&#xff01;&#xff01;&#xff01; 目录 问题分析 出现问题的场景 报错原因 解决思路 解决方法 检查音频设备是否被其他应用占用 确认音频格式设置 更新或重装音频驱动…

深度学习中的不确定性量化:技术、应用和挑战综述(一)

不确定性量化(UQ)在减少优化和决策过程中的不确定性方面起着关键作用&#xff0c;应用于解决各种现实世界的科学和工程应用。贝叶斯近似和集成学习技术是文献中使用最广泛的两种UQ方法。在这方面&#xff0c;研究人员提出了不同的UQ方法&#xff0c;并测试了它们在各种应用中的…

vscode查看linux内核代码报错“Unknown argument:“无法跳转函数问题

vscode查看linux内核代码报错问题 现在一直使用bearclangdvscode查看代码&#xff0c; 今天用gcc 9.4.0版本编译Linux 6.6内核代码&#xff0c;编译后发现无法函数跳转。 vscode报错信息如下&#xff1a; Unknown argument: -fconserve-stack Unknown argument: -femit-stru…

Ansible自动化运维工具单模块介绍

前言 自动化运维是指利用自动化工具和技术来简化、自动化和优化IT基础设施的管理和运维过程&#xff0c;从而提高效率、降低成本&#xff0c;并减少人为错误。在当今复杂的IT环境中&#xff0c;自动化运维已经成为许多组织和企业提高生产力和保证系统稳定性的重要手段。Ansibl…

动态规划算法:路径问题

例题一 解法&#xff08;动态规划&#xff09;&#xff1a; 算法思路&#xff1a; 1. 状态表⽰&#xff1a; 对于这种「路径类」的问题&#xff0c;我们的状态表⽰⼀般有两种形式&#xff1a; i. 从 [i, j] 位置出发&#xff0c;巴拉巴拉&#xff1b; ii. 从起始位置出…