摘要: #include <iostream> #include<direct.h> #include<io.h> bool CheckPathExist(std::string path) { if (access(path.c_str(), 0) == -1) { return false; } ret 阅读全文
posted @ 2022-03-18 16:18 leochan007 阅读(368) 评论(0) 推荐(0)