U
Size: a a a
U
LG
K
U
U
D
LG
LG
D
K
LG
D
А
K
D
LG
U
vector< string > listFile(string fullPath) {
filesystem::path path(fullPath);
vector< string > result{ "none" };
if (filesystem::is_directory(fullPath)) {
for (auto& flist: filesystem::directory_iterator(path))
result.push_back(static_cast<string>(path.c_str()));
}
return result;
}
ругается на push_back(static_cast<string>(path.c_str()));
K
U