| 184 | } |
| 185 | |
| 186 | void deleteFile(const Path& path) override |
| 187 | { |
| 188 | mount(); |
| 189 | auto pathstr = toUpper(path.to_str()); |
| 190 | FRESULT res = f_unlink(pathstr.c_str()); |
| 191 | throwError(res); |
| 192 | } |
| 193 | |
| 194 | void moveFile(const Path& oldPath, const Path& newPath) override |
| 195 | { |