1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-27 18:02:17 +03:00

Implement SPIFFS.exists

This commit is contained in:
Ivan Grokhotkov
2015-09-14 12:46:47 +03:00
parent f73d414f38
commit c8b12fd72c
5 changed files with 32 additions and 1 deletions

View File

@ -191,6 +191,14 @@ if (!f) {
}
```
#### exists
```c++
SPIFFS.exists(path)
```
Returns *true* if a file with given path exists, *false* otherwise.
#### openDir
```c++