C语言打开其他目录下的文本文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言打开其他目录下的文本文件相关的知识,希望对你有一定的参考价值。
#include<stdio.h>
#include<stdlib.h>
int main()
FILE *a;
fopen_s(&a, "H:\C++\Test\fopen_s2\Debug\test.txt\\", "a");
fprintf(a, "大笨蛋");
return 0;
这段代码无法运行,请问如何才能让程序访问其他文件夹下的文本?
\是转义字符,所以要用 \\
最后不需要加\\
正确定写法
"H:\\C++\\Test\\fopen_s2\\Debug\\test.txt" 参考技术A "H:\C++\Test\fopen_s2\Debug\test.txt\\"
要改成
"H:\\C++\\Test\\fopen_s2\\Debug\\test.txt"
以上是关于C语言打开其他目录下的文本文件的主要内容,如果未能解决你的问题,请参考以下文章