在 C++ 中检查文件是否存在的最佳方法是什么?(跨平台)

2021-12-29 00:00:00 file file-io c++

我已阅读检查 C 中是否存在文件的最佳方法是什么?(跨平台),但我想知道是否有更好的方法使用标准 C++ 库来做到这一点?最好不要尝试打开文件.

I have read the answers for What's the best way to check if a file exists in C? (cross platform), but I'm wondering if there is a better way to do this using standard c++ libs? Preferably without trying to open the file at all.

stataccess 几乎都无法通过 Google 搜索.我应该怎样#include 来使用这些?

Both stat and access are pretty much ungoogleable. What should I #include to use these?

推荐答案

使用 boost::filesystem:

#include <boost/filesystem.hpp>

if ( !boost::filesystem::exists( "myfile.txt" ) )
{
  std::cout << "Can't find my file!" << std::endl;
}

相关文章