I have upgraded the ESP32 to version 2.0.14 and I am finding that it is causing problems on one project where I have SPIFFS. For example, it doesn't work:
File fileTISKapi = SPIFFS.open("/datapi.txt", FILE_WRITE);
fileTISKapi.print(api);
fileTISKapi.close();
Spiffs are not saved at all. On an older version of ESP32, I think I had 2.0.9 it worked without a problem. What should the new SPIFFS look like?