improvements

This commit is contained in:
2023-10-09 21:24:57 +02:00
parent 21119603cb
commit 6684be01eb
7 changed files with 62 additions and 2 deletions

View File

@@ -64,7 +64,8 @@ void DirectoryNode::buildDirectoryTree(const char *currentPath)
{
break;
}
if (entry.isDirectory())
if (entry.isDirectory() && strcmp(entry.name(),sys_dir.c_str()))
{
DirectoryNode *newNode = new DirectoryNode(entry.name());
subdirectories.push_back(newNode);