fix ZipFileDevice::list for root path
This commit is contained in:
@@ -293,10 +293,19 @@ private:
|
|||||||
|
|
||||||
std::unique_ptr<PathsGenerator> ZipFileDevice::list(std::string_view path) {
|
std::unique_ptr<PathsGenerator> ZipFileDevice::list(std::string_view path) {
|
||||||
std::vector<std::string> names;
|
std::vector<std::string> names;
|
||||||
auto folder = std::string(path) + "/";
|
if (path.empty()) {
|
||||||
size_t folderLen = folder.length();
|
for (const auto& [name, entry] : entries) {
|
||||||
for (const auto& [name, entry] : entries) {
|
if (name.find('/') == std::string::npos) {
|
||||||
if (name.find(folder) == 0) {
|
names.push_back(name);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
auto folder = std::string(path) + "/";
|
||||||
|
size_t folderLen = folder.length();
|
||||||
|
for (const auto& [name, entry] : entries) {
|
||||||
|
if (name.find(folder) != 0) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
size_t pos = name.find('/', folderLen);
|
size_t pos = name.find('/', folderLen);
|
||||||
if (pos == std::string::npos) {
|
if (pos == std::string::npos) {
|
||||||
names.push_back(name.substr(folderLen, pos - folderLen));
|
names.push_back(name.substr(folderLen, pos - folderLen));
|
||||||
|
|||||||
Reference in New Issue
Block a user