我已阅读检查 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.
stat
和 access
几乎都无法通过 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;
}
这篇关于在 C++ 中检查文件是否存在的最佳方法是什么?(跨平台)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!