C++ 判断一个文件是否存在。存在则删除

判断一个文件是否存在

#include <sys/stat.h>
#include <string>
#include <fstream>
#pragma warning(disable:4996)

inline bool exists_test0(const std::string& name) {
    std::ifstream f(name.c_str());
    return f.good();
}

inline bool exists_test1(const std::string& name) {
    if (FILE* file = fopen(name.c_str(), "r")) {
        fclose(file);
        return true;
    }
    else {
        return false;
    }
}

inline bool exists_test3(const std::string& name) {
    struct stat buffer;
    return (stat(name.c_str(), &buffer) == 0);
}

int main() {
    std::string a = "savefile.txt";
    bool a1 = exists_test0(a);
    bool a2 = exists_test1(a);
    bool a3 = exists_test3(a);
    return 0;
}

stackoverflow上一大佬做了几种方法的运行时间的实验,在他的环境下,stat()函数的结果最优。

删除文件

删除文件的函数也有很多,
1.可以使用DeleteFile(str2); // 删除文件
百度百科它的参数比较坑,MFC里面的话,建议使用这个。
2.remove(a.c_str());remove()函数挺好的,适合在简单的C++程序里面使用。其参数类型是const char*.

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

指针的值是地址

觉得还不错,我会继续努力的。

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值