mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-13 19:29:58 +01:00
bugfix list directory (return list with full filename)
This commit is contained in:
@@ -172,7 +172,7 @@ list<string> SystemToolkit::list_directory(const string& path, const string& fil
|
|||||||
{
|
{
|
||||||
string filename = string(ent->d_name);
|
string filename = string(ent->d_name);
|
||||||
if ( extension_filename(filename) == filter)
|
if ( extension_filename(filename) == filter)
|
||||||
ls.push_back( filename );
|
ls.push_back( full_filename(path, filename) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
closedir (dir);
|
closedir (dir);
|
||||||
|
|||||||
Reference in New Issue
Block a user