gpt4 book ai didi

c++ - 你如何在不打开文件的情况下检查文件是否存在于C++中?

转载 作者:行者123 更新时间:2023-11-28 04:23:12 26 4
gpt4 key购买 nike

我想编写代码来检查我的桌面上是否存在 .exe 文件并返回相应的消息。但是我想在不打开文件的情况下进行这项检查。

最佳答案

你可以使用boost文件系统

#include <boost/filesystem.hpp>
boost::filesystem::exists("path/to/myfile.exe");

或者如果你有一个 C++17 兼容的编译器:

#include <filesystem>
std::filesystem::exists("path/to/myfile.exe");

关于c++ - 你如何在不打开文件的情况下检查文件是否存在于C++中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54992724/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com