We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 074efb2 commit 1c0a36cCopy full SHA for 1c0a36c
libraries/LittleFS/src/LittleFS.cpp
@@ -36,19 +36,19 @@ class LittleFSImpl : public VFSImpl
36
public:
37
LittleFSImpl();
38
virtual ~LittleFSImpl() { }
39
- virtual bool exists(const char* path);
+ //virtual bool exists(const char* path);
40
};
41
42
LittleFSImpl::LittleFSImpl()
43
{
44
}
45
-
+/*
46
bool LittleFSImpl::exists(const char* path)
47
48
File f = open(path, "r",false);
49
return (f == true);
50
51
+*/
52
LittleFSFS::LittleFSFS() : FS(FSImplPtr(new LittleFSImpl())), partitionLabel_(NULL)
53
54
0 commit comments