当前位置: 首页 > 工具软件 > fsync > 使用案例 >

fsync的使用

向嘉誉
2023-12-01

正常写入数据的时候,会将文本先写入缓冲区,然后达到一定数目的时候,写入磁盘,但是当数据正在写入的时候,如果linux系统突然关机,就会造成数据丢失.

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

int main(){
    char str[64] = "hello world\n";
    int fd1;
    fd1 = open("demo.txt",O_RDWR | O_CREAT | O_TRUNC, 0644);

    write(fd1,str,sizeof(str));

    return 0;
}

fsync - 将fd对应文件的块缓冲区立即写入磁盘,并等待实际写磁盘操作结束返回
这样的话,我们可以通过fsync的返回值判断,数据是否已经刷新到磁盘.

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

int main(){
    char str[64] = "hello world\n";
    int fd;
    fd = open("demo.txt",O_RDWR | O_CREAT | O_TRUNC, 0644);

    write(fd,str,sizeof(str));

    fsync(fd);

    return 0;
}
 类似资料: