首页 热点资讯 义务教育 高等教育 出国留学 考研考公

Linux环境编程:打开open函数创建的文件,然后对此文件进行读写操作。。。

发布网友 发布时间:2022-04-23 09:02

我来回答

1个回答

热心网友 时间:2023-10-08 23:56

#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>

int main() { 
    int fd = -1; 
    fd = open("_561804018.dat", O_CREAT | O_TRUNC | O_RDWR, 0666);
    if (fd < 0) {
        perror("open");
        return -1; 
    }   
    char buff[];
    strcpy(buff, "Hello!I am writing to this file!");
    int count = strlen(buff);
    if (write(fd, buff, count) < 0) {
        perror("write");
        return -1; 
    }   
    if (lseek(fd, 0, SEEK_SET) < 0) {
        perror("lseek");
        return -1; 
    }   
    if (read(fd, buff, 10) < 0) {
        perror("read");
        return -1; 
    }   
    buff[10] = 0x00;
    printf("%s\n", buff);
    if (fd > 0) {
        close(fd);
        fd = -1; 
    }   
    return 0;
}

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com