摘要:
代码 核心代码 FILE *pfile = nullptr; int ret = fopen_s(&pfile, str.c_str(), "rb"); /// 0 = 打开成功, if (0 == ret) { if (pfile) { /// 将文件指针移动到文件尾 fseek(pfile, 0 阅读全文
摘要:
代码 核心代码 /// 判断文件是否存在 bool is_exist_file_(std::string&& str_file) { struct stat st; return (0 == stat(str_file.c_str(), &st)); } 完整代码 #include <iostrea 阅读全文