1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-29 16:03:14 +03:00
This commit is contained in:
david gauchard
2022-06-15 23:54:10 +02:00
committed by GitHub
parent 494e51f2bb
commit 319f1d066d

View File

@ -46,7 +46,7 @@ bool migrateFS() {
Serial.println(F("Alternative found")); Serial.println(F("Alternative found"));
if (fstools.moveFS(LittleFS)) { if (fstools.moveFS(LittleFS)) {
Serial.println(F("FileSystem Moved New FS contents:")); Serial.println(F("FileSystem Moved New FS contents:"));
fstools.fileListIterator(LittleFS, "/", [](File & f) { fstools.fileListIterator(LittleFS, "/", [](File& f) {
Serial.printf_P(PSTR(" File: %-30s [%8uB]\n"), f.fullName(), f.size()); Serial.printf_P(PSTR(" File: %-30s [%8uB]\n"), f.fullName(), f.size());
}); });
return true; return true;