使用std库判断指定全路径的文件是否存在

动态 未结 0 148
小小草
小小草 LV1 2023年9月23日 23:20 发表
可以使用`std::filesystem`库中的`exists()`函数来判断指定全路径的文件是否存在。示例代码如下: ```cpp #include #include namespace fs = std::filesystem; int main() { std::string path = "/path/to/file"; if (fs::exists(path)) { std::cout << "File exists." << std::endl; } else { std::cout << "File does not exist." << std::endl; } return 0; } ``` 需要注意的是,`std::filesystem`库在C++17中才被引入,如果您的编译器不支持C++17,则需要使用其他方法来判断文件是否存在。
收藏(0)  分享
相关标签: 智能问答
问题没解决?让AI助手帮你作答 AI助手
0个回复
  • 消灭零回复