From e25e5bf406251172fb6c7cedd9a86c372a1fa644 Mon Sep 17 00:00:00 2001 From: Tony <454794+tonyrewin@users.noreply.github.com> Date: Tue, 24 May 2022 07:34:38 +0300 Subject: [PATCH] fixed small bug --- src/LITTLEFS.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LITTLEFS.cpp b/src/LITTLEFS.cpp index d14f1ee..a0a6e1e 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"); + File f = open(path, "r", false); return (f == true); }