| 257 | } |
| 258 | |
| 259 | String FileSystem::getErrorString(int err) |
| 260 | { |
| 261 | if(Error::isSystem(err)) { |
| 262 | return spiffsErrorToStr(Error::toSystem(err)); |
| 263 | } else { |
| 264 | return IFS::Error::toString(err); |
| 265 | } |
| 266 | } |
| 267 | |
| 268 | FileHandle FileSystem::open(const char* path, OpenFlags flags) |
| 269 | { |
no test coverage detected