diff --git a/src/LITTLEFS.cpp b/src/LITTLEFS.cpp index a0a6e1e..d14f1ee 100644 --- a/src/LITTLEFS.cpp +++ b/src/LITTLEFS.cpp @@ -41,7 +41,7 @@ LITTLEFSImpl::LITTLEFSImpl() bool LITTLEFSImpl::exists(const char* path) { - File f = open(path, "r", false); + File f = open(path, "r"); return (f == true); }