如何打开txt文件-不在使用C的程序文件夹中(在计算机的内存中的任何位置)?

时间:2019-07-19 09:28:32

标签: c file io fopen

我知道

enter code here

FILE * fP;

fP = fopen("food.txt", "w");

etc ...将在保存此代码的同一文件夹中创建一个名为food的文件。 但我想在计算机的其他文件夹中创建此文件,请在“ C:\ Users \ deanl \ Videos \ Captures”中说

我在VS上尝试了此代码,但是当我按Start而不进行调试时,它显示“ Debug Assertion Failed!”。 我的语法有问题吗?

enter code here

void main()
{
FILE * fP;
fP = fopen("C:\Users\deanl\Videos\Captures\food.txt", "w");
fprintf(fP, "i love cheese\n");
fclose(fP);

}

错误消息说: “调试断言失败! ....某物... 表达式:stream!= nullptr .....东西.... (请重试调试应用程序)”

0 个答案:

没有答案