C++ 中有没有这样简单的函数?任何帮助表示赞赏。
问问题
49 次
1 回答
4
您可以使用Boost 的文件系统库。例子:
#include <iostream>
#include <boost/filesystem.hpp>
int main(int argc, char* argv[])
{
boost::filesystem::path p("/path/to/directory");
if (exists(p))
{
std::cout << p << " exists!" << std::endl;
}
return 0;
}
请注意,Boost 文件系统不是仅头文件系统,并且需要库链接。
于 2013-07-11T01:42:11.763 回答