* Move/rename a file from `fromPath` to `toPath`. * Implementations should create intermediate directories on the destination side. * Should be atomic where the backend supports it; otherwise copy + delete. * Throws if the source does not exist or if the destination already exists.
(fromPath: string, toPath: string)
| 74 | * Throws if the source does not exist or if the destination already exists. |
| 75 | */ |
| 76 | move(fromPath: string, toPath: string): Promise<void>; |
| 77 | |
| 78 | /** Get a display name for the backend (for UI) */ |
| 79 | getDisplayName(): Promise<string>; |
no outgoing calls
no test coverage detected