(self, remote_path, local_path, callback=None)
| 543 | callback() |
| 544 | |
| 545 | def upload_async(self, remote_path, local_path, callback=None): |
| 546 | |
| 547 | target = (lambda: self.upload_sync(local_path=local_path, remote_path=remote_path, callback=callback)) |
| 548 | threading.Thread(target=target).start() |
| 549 | |
| 550 | def copy(self, remote_path_from, remote_path_to): |
| 551 |