| 192 | } |
| 193 | |
| 194 | void moveFile(const Path& oldPath, const Path& newPath) override |
| 195 | { |
| 196 | mount(); |
| 197 | auto oldPathStr = toUpper(oldPath.to_str()); |
| 198 | auto newPathStr = toUpper(newPath.to_str()); |
| 199 | FRESULT res = f_rename(oldPathStr.c_str(), newPathStr.c_str()); |
| 200 | throwError(res); |
| 201 | } |
| 202 | |
| 203 | void createDirectory(const Path& path) override |
| 204 | { |