linux创建空洞文件

版权声明:本文为博主原创文章,转载请注明出处。 https://blog.csdn.net/daiyudong2020/article/details/78024748


文件偏移量可以大于文件的当前长度,会在文件中构成空洞,文件中的空洞并不要求在磁盘上占用存储区


源码:

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

int main()
{
    char *pathname = "./test.data";
    long long length = (long long)1024 * 1024 * 1024; //1GB

    //创建文件
    int fd = open(pathname, O_RDWR | O_CREAT | O_EXCL, 0777);
    if (-1 == fd) {
        perror("create file fail");
        return -1;
    } else {
        printf("create file success\n");
    }

    long long ret = lseek(fd, length, SEEK_END);
    if (-1 == ret) {
        perror("lseek file fail");
        return -1;
    }

    write(fd, "0", 1);
    close(fd);

    return 0;
}

ls -l命令看到文件是1GB大小

du -h命令看到文件实际上是4KB大小,也就是一个block


原文出自:http://blog.csdn.net/daiyudong2020/article/details/78024748


End;



猜你喜欢

转载自blog.csdn.net/daiyudong2020/article/details/78024748