8000 SD - examples/listfilesEnhanced by hasenradball · Pull Request #9206 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

SD - examples/listfilesEnhanced #9206

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Nov 20, 2024
Merged
Prev Previous commit
Next Next commit
Update libraries/SD/examples/listFilesEnhanced/listfilesEnhanced.ino
Co-authored-by: Max Prokhorov <prokhorov.max@outlook.com>
  • Loading branch information
hasenradball and mcspr authored Nov 19, 2024
commit 94e097b81425a9a873358136267eace26ae8ffea
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