本文主要是介绍python 使用paramiko模块访问远程文件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
代码:
import paramikoclient = paramiko.SSHClient()
try:client.set_missing_host_key_policy(paramiko.AutoAddPolicy())client.connect(host_ip, port, username, password, timeout=5)sftp_client = client.open_sftp()remote_file = sftp_client.open(file_path, 'r+')'''your code to operate the remote file'''remote_file.close()
except:print('failed to open the remote file!')
finally:client.close()
这篇关于python 使用paramiko模块访问远程文件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!