| 797 | } |
| 798 | |
| 799 | int FileSystem::closedir(DirHandle dir) |
| 800 | { |
| 801 | GET_FILEDIR() |
| 802 | |
| 803 | int err = SPIFFS_closedir(&d->d); |
| 804 | delete d; |
| 805 | return translateSpiffsError(err); |
| 806 | } |
| 807 | |
| 808 | int FileSystem::mkdir(const char* path) |
| 809 | { |
no test coverage detected