C中的fopen()方法用于打开指定的文件。
我们举个例子来理解一下问题
FILE *fopen(filename, mode)
以下是使用fopen()打开文件的有效模式:‘r’、‘w’、‘a’、‘r+’、‘w+’、‘a+’。详细信息请访问C库函数 - fopen()
如果要打开的文件在当前目录中不存在,则会创建一个新的空文件,使用写模式。
如果要打开的文件在当前目录中存在,并且使用‘w’ / ‘w+’打开,则在写入之前会删除内容。
程序示例,说明我们解决方案的工作原理
#include <stdio.h> #include <stdlib.h> int main(){ FILE *opFile = fopen("test.txt", "w"); if (opFile == NULL){ puts("Couldn't open file"); exit(0); } else{ fputs("includehelp", opFile); puts("Write operation successful"); fclose(opFile); } return 0; }
Write operation successful
文件的初始内容 - C编程语言
追加操作后的内容 - 包括帮助
写操作会执行其工作,但会删除在执行写操作之前存在于文件中的所有内容。为了解决这个问题,C编程语言已经更新为两种不同的方法,程序员可以根据程序的要求使用。
‘a’(追加)模式 - 这个模式将新内容追加到文件中已写入的内容的末尾。
‘wx’模式 - 如果文件已经存在于目录中,将返回NULL。
使用‘a’模式演示对现有文件进行写操作的程序
#include <stdio.h> #include <stdlib.h> int main(){ FILE *opFile = fopen("test.txt", "a"); if (opFile == NULL){ puts("Couldn't open file"); exit(0); } else{ fputs("includehelp", opFile); puts("Write operation successful"); fclose(opFile); } return 0; }
Write operation successful
文件的初始内容 − C编程语言
追加操作后的内容 − C编程语言 includehelp
使用 ‘wx’ 模式在现有文件上进行写操作的程序
#include <stdio.h> #include <stdlib.h> int main(){ FILE *opFile = fopen("test.txt", "wx"); if (opFile == NULL){ puts("Couldn't open file"); exit(0); } else{ fputs("includehelp", opFile); puts("Write operation successful"); fclose(opFile); } return 0; }
Write operation successful
以上是在C语言中,使用fopen()函数以写模式打开现有文件的详细内容。更多信息请关注PHP中文网其他相关文章!