牛骨文教育服务平台(让学习变的简单)
博文笔记

C语言如何清空一个文件的例子

创建时间:2015-02-12 投稿人: 浏览次数:6420

/*********************************************************************
 * Author  : Samson
 * Date    : 02/12/2015
 * Test platform:
 *              3.13.0-24-generic
 *              GNU bash, 4.3.11(1)-release 
 * *******************************************************************/

如何使用C语言使一个文件的内容直接就清空了呢?

答案就在如下的程序代码中:

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

#define PATHNAME "./test"
int main()
{
        int ret = open(PATHNAME, O_WRONLY | O_TRUNC);
        if(ret == -1)
        {
                printf("open file is fail! ");
                return -1;
        }
        close(ret);
        return 0;
}

在当前目录下有一个文件名为test的文件,使用ll命令查看一下文件的大小:

ufo@ufo:/tmp$ ll test

-rw-r--r-- 1 ufo ufo 293  2月 12 17:05 test
ufo@ufo:/tmp$ gcc testwrite.c

ufo@ufo:/tmp$ ./a.out

执行后再查看test文件的大小,即已经为0了,使用cat test也是没有内容显示的了。

ufo@ufo:/tmp$ ll test
-rw-r--r-- 1 ufo ufo 0  2月 12 17:05 test

关键在于open函数中的oflag参数,使用man 2 open可以查看到open函数的说明,

O_WRONLY:表示以只写打开文件

O_TRUNC:表示如果open中的参数文件名为pathname的文件存在的话,且为只写或读写成功打开的话,则将其长度截智短为0。也就达到了清空文件内容的目的了。


声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。