码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2015-02-12 18:28:22      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

/*********************************************************************
 * 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!\n");
                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。也就达到了清空文件内容的目的了。


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

标签:

原文地址:http://blog.csdn.net/yygydjkthh/article/details/43764649

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!