C检查文件是否存在的方法

时间:2015-12-09 15:42:59

标签: c fopen

我有关于检查文件是否存在的问题。 哪个选项更好?

source=fopen("text.txt","r");
if(source != NULL)
{
    printf("File Exists!\n");
    exit(0);
}

或使用

if (source)
{
    printf("File Exists!\n");
    exit(0);
}

0 个答案:

没有答案