Added more fixes

This commit is contained in:
2024-12-28 14:46:58 -06:00
parent cbc0f59400
commit 5b89d8c5de
14 changed files with 328 additions and 57 deletions

View File

@ -38,9 +38,8 @@ int main(int argc, char** argv)
{
std::string dir = "/";
if(argc > 2) dir = argv[2];
std::vector<VFSPath> paths;
fs.GetPaths(dir, paths);
for(auto item : paths)
for(auto item : fs.EnumeratePaths(dir))
{
std::cout << item.GetFileName() << std::endl;
}