| 308 | } |
| 309 | |
| 310 | bool Win32FileSystem::rename(const Path& from,const Path& to) |
| 311 | { |
| 312 | String fa = PathToOS(_BuildFileName(mVolume,from)); |
| 313 | String fb = PathToOS(_BuildFileName(mVolume,to)); |
| 314 | |
| 315 | return MoveFile(fa.utf16(),fb.utf16()); |
| 316 | } |
| 317 | |
| 318 | Path Win32FileSystem::mapTo(const Path& path) |
| 319 | { |
nothing calls this directly
no test coverage detected