Lines Matching refs:remote_path
54 remote_path = "data/local/tmp"
151 cls.remote_path = content.get("remote_path")
167 + f"{'remote storage path'.rjust(20, ' ')}: {cls.remote_path}\n" \
194 if opt := input(f"Default remote storage path? [{cls.remote_path}]\n").strip():
195 cls.remote_path = opt
297 return f"{GP.remote_path}/{path}"
368 elif GP.remote_path in remote:
414 remote_path = f"{GP.remote_path}/{remote}"
415 cmd = f"file send {local_path} {remote_path}"
416 return check_shell(cmd) and _check_file(local_path, remote_path)
421 remote_path = f"{GP.remote_path}/{remote}"
422 cmd = f"file recv {remote_path} {local_path}"
423 return check_shell(cmd) and _check_file(local_path, remote_path)