Linux的文件IO

1. Linux文件IO的基础函数

在Linux中,一切皆文件,所以学习文件IO是执行其他操作的基础。常用的函数有open、write、close、 lseek。

1.1 open 打开文件

#include <sys/types.h>

#include <sys/stat.h>

#include <fcntl.h>

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

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

1.2 write 写文件

#include <unistd.h>

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

1.3 read 读文件

#include <unistd.h>

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

1.4 close 关闭文件

#include <unistd.h>

int close(int fd)

1.5 lseek计算偏移量

对于每个打开的文件,系统都会记录它的读写位置偏移量,我们也把这个读写位置偏移量称为读写偏移

量,记录了文件当前的读写位置,当调用read()或write()函数对文件进行读写操作时,就会从当前读写位置

偏移量开始进行数据读写。

#include <sys/types.h>

#include <unistd.h>

off_t lseek(int fd, off_t offset, int whence);

2.程序实例

通过一个程序示例,熟悉这个四个函数的用法,首先打开一个文件,然后对其进行读写操作,随后显示读写的内容,并关闭该文件。

cpp 复制代码
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdio.h>



//open file

int main(void)
{
char buff[1024];
char buff_w[20]={"9876543210"};
ssize_t fr,fw;
int fd1;
int ret;
int fc;
int i;

fd1 = open("./a.txt", O_RDWR);
if (-1 == fd1){
 	perror("open");
	return fd1;

}


fr =  read( fd1, buff, 15);
if (-1==fr)
	printf("read error!\n");
else
	printf("read data sucessfully!\n");



printf("The data is:\n");

for(i=0;i<15;i++)
{
putchar(buff[i]);

}

printf("\n");


// lseek function
off_t off = lseek(fd1, 0, SEEK_END);
if (-1 == off)
	{

	printf("lseek error\n!");
	}


fw = write(fd1, buff_w,10);
if (-1 == off)
	{

	printf("write error\n!");
	}


fc = close(fd1);

if (-1==fc)
        printf("close error!\n");
else
        printf("close  sucessfully!\n");


}

程序运行的结果:

相关推荐
xywww16820 分钟前
大模型 API 选型实战:GPT、Gemini、Claude 接入时该看哪些指标?
运维·服务器·人工智能·python·gpt·langchain
梦想的颜色3 小时前
【Docker原理】Docker 容器一文打尽:生命周期、环境管控、迁移备份、日志进程排查、垃圾清理
运维·docker·容器·容器生命周期·容器日志排查·容器迁移备份·容器进程管理
欢呼的太阳5 小时前
数据库设计Step by Step (10)——范式化
服务器·数据库·oracle
夜雪一千5 小时前
Python enumerate() 函数完整详解:遍历同时获取索引,告别手动计数
服务器·windows·python
donoot6 小时前
Linux系统下图书馆级电子书全自动标准化分类整理完整实施方案
大数据·linux·运维·电子书管理
ITKEY_6 小时前
macOS brew 安装的nginx 文件在哪里?
运维·nginx·macos
Felix-lxd7 小时前
Ubuntu 22.04 配置 Nginx
linux·nginx·ubuntu
Elastic 中国社区官方博客7 小时前
如何比较两个 Elasticsearch 索引并找出缺失的文档
大数据·运维·数据库·elasticsearch·搜索引擎
大E帝国子民17 小时前
MacOS 安装Seismic Unix
服务器·macos·unix
Tim_Van8 小时前
在 CentOS 7 中安装 Chromium 的完整步骤
linux·运维·chrome·centos