We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d837e84 commit 22dfbfeCopy full SHA for 22dfbfe
libraries/FFat/src/FFat.cpp
@@ -152,13 +152,4 @@ size_t F_Fat::freeBytes() {
152
return free_sect * sect_size;
153
}
154
155
-bool F_Fat::exists(const char *path) {
156
- File f = open(path, "r", false);
157
- return (f == true) && !f.isDirectory();
158
-}
159
-
160
-bool F_Fat::exists(const String &path) {
161
- return exists(path.c_str());
162
163
164
F_Fat FFat = F_Fat(FSImplPtr(new VFSImpl()));
libraries/FFat/src/FFat.h
@@ -32,8 +32,6 @@ class F_Fat : public FS {
32
size_t usedBytes();
33
size_t freeBytes();
34
void end();
35
- bool exists(const char *path);
36
- bool exists(const String &path);
37
38
private:
39
wl_handle_t _wl_handle = WL_INVALID_HANDLE;
0 commit comments