You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* Test isDirectory() method */
MyFile = File("STM32");
if (MyFile) {
Serial.print("Is 'STM32' is a dir: ");
if (MyFile.isDirectory())
Serial.println("OK");
else
Serial.println("KO");
} else {
Serial.println("Error to open 'STM32' dir");
}
With listfiles.ino example, after rewindDirectory() the printDirectory() is not fully displayed.
The text was updated successfully, but these errors were encountered:
With
Full.ino
example, this fail:With
listfiles.ino
example, afterrewindDirectory()
theprintDirectory()
is not fully displayed.The text was updated successfully, but these errors were encountered: