系统编程之文件IO(四)——初级IO(open、close、write、lseek)

简介: 系统编程之文件IO(四)——初级IO(open、close、write、lseek)

1.open和close


原型:

int open (const char *pathname, int flags)

pathname 是文件名

flags必须是以下之一:


O_EDONLY 以只读方式打开

O_WRONLY 以只写方式打开

O_RDWR 以可读可写方式打开文件

mode_t mode 权限


返回值:成功返回文件描述符,失败返回-1

close(文件描述符)


0a2653c851af460fa595bd959398a8f1.png


open的注意事项


多次open同一文件、实现共享操作时、制定O_APPEND可以防止数据相互覆盖的发生


原因:不同程序的读写位置是不一样,(两个终端同时访问一个文件,文件读写位置是不一样的,会造成数据覆盖)


2. write


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

fd:往哪个文件去写

buf:把什么数据写进去(地址)

count:写多少个字节


返回值:返回写进去的字节数


#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
int main(int argc,char *argv[])
{
    if(argc != 2)
    {
        printf("please put in .txt\n");        
    }
    # if 0
    //creat("hello.txt",S_IRWXU | S_IRWXG | S_IRWXO);
    //creat(argv[1], 0655);
    int fd = creat(argc[1], S_IRWXU | S_IRGRP | S_IROTH);
    if (fd == -1)
    {
        printf("error!");
    }
    #endif
    int fd = open(argv[1], O_RDWR | O_CREAT | O_APPEND, 0655);
    if (fd == -1)
    {
        perror("open file error!");
        exit(1);
    }
    printf("open file success! = %d\n", fd);
    char buffer[1024];
    strcpy(buffer, "hello world");
    int w_len = write(fd, buffer, strlen(buffer));
    if (w_len == -1)
    {
        perror("write data error!");
        exit(1);
    }
    printf("write data len = %d\n", w_len);
    close(fd);
    return 0;
}


3.read


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

fd:往哪个文件去读

buf:把读出的数据写进去(地址)

count:读多少个字节


返回:实际读到的字节数


跟write很像


问题产生:无法读到数据


当时程序


#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
int main(int argc,char *argv[])
{
    if(argc != 2)
    {
        printf("please put in .txt\n");        
    }
    # if 0
    //creat("hello.txt",S_IRWXU | S_IRWXG | S_IRWXO);
    //creat(argv[1], 0655);
    int fd = creat(argc[1], S_IRWXU | S_IRGRP | S_IROTH);
    if (fd == -1)
    {
        printf("error!");
    }
    #endif
    int fd = open(argv[1], O_RDWR | O_CREAT | O_APPEND, 0655);
    if (fd == -1)
    {
        perror("open file error!");
        exit(1);
    }
    printf("open file success! = %d\n", fd);
    char buffer[1024];
    strcpy(buffer, "hello world");
    int w_len = write(fd, buffer, strlen(buffer));
    if (w_len == -1)
    {
        perror("write data error!");
        exit(1);
    }
    printf("write data len = %d\n", w_len);
    memset(buffer, 0, sizeof(buffer));
    int r_len = read(fd, buffer, sizeof(buffer) - 1);
    if (r_len == -1)//r_len == 0 read file end
    {
        perror("read data error!");
        exit(1);
    }
    printf("read data :%s\n", buffer);
    close(fd);
    return 0;
}


当时结果


2d65d23f6d4748949b924e4057485923.png


没有读到数据


原因分析


读文件:是从读写指针往后读的


4.Iseek


移动文件读写指针


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

off_t是有符号型

offset是向前,还是向后(负是向前)

whence先将文件指针固定到什么位置

SEEK_SET 将文件指针固定到开始位置

SEEK_CUR 将文件指针固定到现在位置

SEEK_END 将文件指针固定到末尾位置


返回值,距离文件头的长度

int file_len = lseek(fd, 0, SEEK_END);


#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
int main(int argc,char *argv[])
{
    if(argc != 2)
    {
        printf("please put in .txt\n");        
    }
    # if 0
    //creat("hello.txt",S_IRWXU | S_IRWXG | S_IRWXO);
    //creat(argv[1], 0655);
    int fd = creat(argc[1], S_IRWXU | S_IRGRP | S_IROTH);
    if (fd == -1)
    {
        printf("error!");
    }
    #endif
    int fd = open(argv[1], O_RDWR | O_CREAT | O_APPEND, 0655);
    if (fd == -1)
    {
        perror("open file error!");
        exit(1);
    }
    printf("open file success! = %d\n", fd);
    char buffer[1024];
    strcpy(buffer, "hello world");
    int w_len = write(fd, buffer, strlen(buffer));
    if (w_len == -1)
    {
        perror("write data error!");
        exit(1);
    }
    printf("write data len = %d\n", w_len);
    memset(buffer, 0, sizeof(buffer));
    //lseek(fd, 0, SEEK_SET);
    lseek(fd, -w_len,SEEK_CUR);
    int r_len = read(fd, buffer, sizeof(buffer) - 1);
    if (r_len == -1)//r_len == 0 read file end
    {
        perror("read data error!");
        exit(1);
    }
    else if(r_len == 0)
    {
        printf("read file end\n");
    }
    printf("read data :%s\n", buffer);
    close(fd);
    return 0;
}


附 man1、2、3的解释


man 1:表示查看Linux命令

man 2:表示查看系统调用函数

man 3:表示查看标准C库函数


相关文章
|
1月前
|
数据库
同步IO模型是一种常见的编程模型
【10月更文挑战第5天】同步IO模型是一种常见的编程模型
18 2
|
1月前
|
搜索推荐 索引
【文件IO】实现:查找文件并删除、文件复制、递归遍历目录查找文件
【文件IO】实现:查找文件并删除、文件复制、递归遍历目录查找文件
34 2
|
1月前
|
编解码 Java 程序员
【文件IO】文件内容操作
【文件IO】文件内容操作
45 2
|
1月前
|
存储 Java API
【文件IO】文件系统操作
【文件IO】文件系统操作
40 1
|
2月前
|
Java 大数据 API
Java 流(Stream)、文件(File)和IO的区别
Java中的流(Stream)、文件(File)和输入/输出(I/O)是处理数据的关键概念。`File`类用于基本文件操作,如创建、删除和检查文件;流则提供了数据读写的抽象机制,适用于文件、内存和网络等多种数据源;I/O涵盖更广泛的输入输出操作,包括文件I/O、网络通信等,并支持异常处理和缓冲等功能。实际开发中,这三者常结合使用,以实现高效的数据处理。例如,`File`用于管理文件路径,`Stream`用于读写数据,I/O则处理复杂的输入输出需求。
|
2月前
|
网络协议 Java Linux
高并发编程必备知识IO多路复用技术select,poll讲解
高并发编程必备知识IO多路复用技术select,poll讲解
|
1月前
|
存储 Java 程序员
【Java】文件IO
【Java】文件IO
35 0
|
3月前
|
存储 Java
【IO面试题 四】、介绍一下Java的序列化与反序列化
Java的序列化与反序列化允许对象通过实现Serializable接口转换成字节序列并存储或传输,之后可以通过ObjectInputStream和ObjectOutputStream的方法将这些字节序列恢复成对象。
|
4月前
|
Java 大数据
解析Java中的NIO与传统IO的区别与应用
解析Java中的NIO与传统IO的区别与应用
|
3月前
|
Java 数据处理
Java IO 接口(Input)究竟隐藏着怎样的神秘用法?快来一探究竟,解锁高效编程新境界!
【8月更文挑战第22天】Java的输入输出(IO)操作至关重要,它支持从多种来源读取数据,如文件、网络等。常用输入流包括`FileInputStream`,适用于按字节读取文件;结合`BufferedInputStream`可提升读取效率。此外,通过`Socket`和相关输入流,还能实现网络数据读取。合理选用这些流能有效支持程序的数据处理需求。
44 2