#include <FS.h>
Serial.begin(115200);
bool success = SPIFFS.begin();
if(success){
Serial.println("File system mounted with success");
}else{
Serial.println("Error mounting the file system");
}
#include <FS.h>
void setup() {
Serial.begin(115200);
bool success = SPIFFS.begin();
if(success){
Serial.println("File system mounted with success");
}else{
Serial.println("Error mounting the file system");
}
}
void loop() {}