(remotePath, str, mode, client)
| 276 | } |
| 277 | |
| 278 | async writeFile (remotePath, str, mode, client) { |
| 279 | return this.withOperationClient(currentClient => { |
| 280 | return writeRemoteFile(currentClient, remotePath, str, mode) |
| 281 | }, client) |
| 282 | } |
| 283 | |
| 284 | async getFolderSize (folderPath, client) { |
| 285 | let size = 0 |