首页 > 解决方案 > fopen 函数未创建文件 .txt

问题描述

我正在使用 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。我正在尝试在文档中执行此操作。我在桌子上试过,但它也不起作用。它不创建文件。

标签: c++fopen

解决方案


我只是路过说我放弃了这个,我从来没有找到解决方案


推荐阅读