/********************************************************************* * 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命令查看一下文件的大小:
[email protected]:/tmp$ ll test
-rw-r--r-- 1 ufo ufo 293 2月 12 17:05 test
[email protected]:/tmp$ gcc testwrite.c
[email protected]:/tmp$ ./a.out
执行后再查看test文件的大小,即已经为0了,使用cat test也是没有内容显示的了。
[email protected]:/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。也就达到了清空文件内容的目的了。
时间: 2024-10-06 18:45:01