fopen 函数未创建文件 .txt

时间:2021-02-21 16:52:31

标签: c++ fopen

我使用 Dev C++ 作为 IDE,Windows 10,这是代码

#include<stdio.h>

main(){ 

        FILE *f;        
    f=fopen("C:\\Users\\min2\\Documents\\asd.txt", "w"); //(did not work)

        
        //f=fopen("C:/Users/min2/Documents/asd.txt", "w"); (did not work)
        //f=fopen("asd.txt", "w");  (did not work)
    
    if(f==NULL)printf("Did not work");  //this is what im getting in the console
    else printf("It worked");
    
            
        fclose(f);
        
}

它不是在创建 .txt。我试图在文档中做到这一点。我在桌子上试过,但它也不起作用。它不会创建文件。

1 个答案:

答案 0 :(得分:0)

我只是顺便说一句我放弃了这个,我从来没有找到解决方案

相关问题