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

打开open函数创建的文件,然后对此文件进行读写操作(将文件打开属性改为可读可写,文件权限要做相应更改)。接着,写入“Hello!Iamwritingtothisfile... 打开open函数创建的文件,然后对此文件进行读写操作(将文件打开属性改为可读可写,文件权限要做相应更改)。接着,写入“Hello!I am writing to this file!”,此时文件指针位于文件尾部。接着再使用lseek函数将文件指针移动文件开始处,并读出10个字节并将其打印出来 展开
 我来答
孟羽然
推荐于2017-10-03 · TA获得超过2976个赞
知道小有建树答主
回答量:1308
采纳率:70%
帮助的人:573万
展开全部
#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("zhidao_561804018.dat", O_CREAT | O_TRUNC | O_RDWR, 0666);
    if (fd < 0) {
        perror("open");
        return -1; 
    }   
    char buff[64];
    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;
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式