本文介绍了如何获取文件名称vs目录名称在c ++(使用boost文件系统库)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我使用 boost :: filesystem
获取目录中的文件名列表时,我会收到文件名和目录名:
When I use boost::filesystem
to get a list of file names in a directory, I receive file names as well as directory names:
#include <string>
#include <iostream>
#include <boost/filesystem.hpp>
using namespace std;
using namespace boost::filesystem;
int main()
{
path p("D:/AnyFolder");
for (auto i = directory_iterator(p); i != directory_iterator(); i++)
{
cout << i->path().filename().string() << endl;
}
}
输出如下:
file1.txt
file2.dat
Folder1 //which is a folder
有快速方法来区分文件和文件夹吗?
我的操作系统是Windows 8.1,如果重要。
Is there a quick way to distinguish between files and folders?My OS is Windows 8.1, if it matters.
推荐答案
boost::filesystem::is_directory(i->path());
这篇关于如何获取文件名称vs目录名称在c ++(使用boost文件系统库)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!