Hide "System Volume Information" folder

This commit is contained in:
Dave Allie 2025-12-31 09:19:22 +11:00
parent 57b075ec97
commit 5c5df22d0d
No known key found for this signature in database
GPG Key ID: F2FDDB3AD8D0276F

View File

@ -42,7 +42,7 @@ void FileSelectionActivity::loadFiles() {
char name[128];
for (auto file = root.openNextFile(); file; file = root.openNextFile()) {
file.getName(name, sizeof(name));
if (name[0] == '.') {
if (name[0] == '.' || strcmp(name, "System Volume Information") == 0) {
file.close();
continue;
}