Skip to content

Commit

Permalink
Update libraries/SD/examples/listFilesEnhanced/listfilesEnhanced.ino
Browse files Browse the repository at this point in the history
Co-authored-by: Max Prokhorov <[email protected]>
  • Loading branch information
hasenradball and mcspr authored Nov 19, 2024
1 parent 4945785 commit 94e097b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ void collectDirectories(const String &dirname, std::vector<String> &directories)
while (file) {
if (file.isDirectory()) {
String fullPath = joinPath(dirname, file.name());
collectDirectories(fullPath, directories); // Rekursiver Aufruf
collectDirectories(fullPath, directories);
}
file = root.openNextFile();
}
Expand Down

0 comments on commit 94e097b

Please sign in to comment.