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 f025588 commit b6daf51Copy full SHA for b6daf51
src/WiFiStorage.h
@@ -8,6 +8,11 @@ class WiFiStorageClass
8
static bool begin();
9
10
static WiFiStorageFile open(const char *filename);
11
+
12
+ static bool exists(const char *filename) {
13
+ size_t len;
14
+ return (WiFiDrv::existsFile(filename, strlen(filename), &len) > 0);
15
+ }
16
static bool exists(const char *filename, size_t* len) {
17
return (WiFiDrv::existsFile(filename, strlen(filename), len) > 0);
18
}
0 commit comments