* Rename/move remote file or directory
(
connectionId: string,
oldPath: string,
newPath: string
)
| 164 | * Rename/move remote file or directory |
| 165 | */ |
| 166 | async rename( |
| 167 | connectionId: string, |
| 168 | oldPath: string, |
| 169 | newPath: string |
| 170 | ): Promise<void> { |
| 171 | return api.invoke('remote_rename', { connectionId, oldPath, newPath }); |
| 172 | }, |
| 173 | |
| 174 | /** |
| 175 | * Download a remote file to a local filesystem path (desktop; binary-safe). |
no test coverage detected