mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2024-11-09 22:28:38 +01:00
Added the line to push dir name on linux
This commit is contained in:
parent
a1d336bf56
commit
72d7d15adc
1 changed files with 1 additions and 0 deletions
|
@ -357,6 +357,7 @@ static std::vector<struct File_Data> get_filenames_recursive(std::string base_pa
|
|||
path += dir_name;
|
||||
|
||||
std::vector<struct File_Data> lower = get_filenames_recursive(path);
|
||||
output.push_back(File_Data{ dir_name });// Is this needed ? Add folder name to the list of files ?
|
||||
std::transform(lower.begin(), lower.end(), std::back_inserter(output), [&dir_name](File_Data f) {f.name = dir_name + "/" + f.name; return f;});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue