标签: python python-2.7 ssh server copy
我正在尝试将文件从服务器复制到电脑上。但我在谷歌搜索这个。我开始知道,我必须做ssh等等。有没有其他方法将文件从服务器复制到PC? 后来我在我的程序中使用这个文件。
答案 0 :(得分:0)
你可以scp(安全副本)。它使用ssh将文件从远程服务器复制到本地。 scp的基本语法是: scp source_file_name username@destination_host:destination_folder
scp source_file_name username@destination_host:destination_folder
有关更多选项,您可以查看man scp。
man scp