作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这段代码假设读取并打印目录中的每个文件,确实如此。现在我希望能够将这些文件放入数据结构中。我选择了一个列表,输出在到达实际文件之前就被切断了。我该如何解决这个问题?
"C:/Users/deonh/Downloads/intranets/intranet1\\page99.html"
- 列表中我想要的
C:/Users/deonh/Downloads/intranets/intranet1
- 我得到了什么。
#include <iostream>
#include<vector>
#include<list>
#include<map>
#include<queue>
#include<fstream>
#include<string>
#include <filesystem>
namespace fs = std::filesystem;
using namespace std;
string path = "C:/Users/deonh/Downloads/intranets/intranet1"; //This gets every single file in the directory
string path5 = "C:/Users/deonh/Downloads/intranets/intranet5";
string path7 = "C:/Users/deonh/Downloads/intranets/intranet7";
int main()
{
list<string>pages;
map<string, int> page;
//Here I am printing the files to make sure the above code works.
for (const auto& entry : fs::directory_iterator(path)) {
std::cout << entry.path() << std::endl;
pages.push_back(path);
}
for (list<string> ::iterator it = pages.begin(); it != pages.end(); it++) {
cout << *it << endl;
}
return 0;
}
最佳答案
您只是向列表中添加了错误的值
pages.push_back(path);
应该是
pages.push_back(entry.path().generic_string());
关于c++ - 将文件目录打印成数据结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58152171/
我是一名优秀的程序员,十分优秀!