bugfix list directory (return list with full filename)

This commit is contained in:
brunoherbelin
2020-07-01 21:48:06 +02:00
parent 1835436239
commit d638145520

View File

@@ -172,7 +172,7 @@ list<string> SystemToolkit::list_directory(const string& path, const string& fil
{
string filename = string(ent->d_name);
if ( extension_filename(filename) == filter)
ls.push_back( filename );
ls.push_back( full_filename(path, filename) );
}
}
closedir (dir);