Skip to content

Commit 4945785

Browse files
hasenradballmcspr
andauthored
Update libraries/SD/examples/listFilesEnhanced/listfilesEnhanced.ino
Co-authored-by: Max Prokhorov <[email protected]>
1 parent ec1f91e commit 4945785

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/SD/examples/listFilesEnhanced/listfilesEnhanced.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ void collectDirectories(const String &dirname, std::vector<String> &directories)
9393
File file = root.openNextFile();
9494
while (file) {
9595
if (file.isDirectory()) {
96-
String fullPath = joinPath(dirname, file.name()); // Vollständigen Pfad erstellen
96+
String fullPath = joinPath(dirname, file.name());
9797
collectDirectories(fullPath, directories); // Rekursiver Aufruf
9898
}
9999
file = root.openNextFile();

0 commit comments

Comments
 (0)