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 4945785f875c8bad3ea0ca7894e85fc33580ef07
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@
directories.push_back(dirname); // Verzeichnis speichern

File file = root.openNextFile();
while (file) {

Check failure on line 94 in libraries/SD/examples/listFilesEnhanced/listfilesEnhanced.ino

View workflow job for this annotation

GitHub Actions / clang-format

Run tests/restyle.sh and re-commit libraries/SD/examples/listFilesEnhanced/listfilesEnhanced.ino

File libraries/SD/examples/listFilesEnhanced/listfilesEnhanced.ino failed clang-format style check. (lines 94)
if (file.isDirectory()) {
String fullPath = joinPath(dirname, file.name()); // Vollständigen Pfad erstellen
String fullPath = joinPath(dirname, file.name());
collectDirectories(fullPath, directories); // Rekursiver Aufruf
}
file = root.openNextFile();
Expand Down
Loading
0