设为首页 加入收藏

TOP

C语言如何清空一个文件的例子
2015-02-13 18:23:23 来源: 作者: 【 】 浏览:30
Tags:语言 如何 清空 一个 文件 例子

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



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


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


#include
#include
#include
#include
#include


#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命令查看一下文件的大小:


linuxidc@linuxidc:/tmp$ ll test


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


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


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


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


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


O_WRONLY:表示以只写打开文件


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


】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇jstl如何对集合的遍历(Map,Set).. 下一篇使用ctypes调用C共享库中函数返回..

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容: