python上传和下载

2015-09-18 0 1,009
python上传和下载
#!/usr/bin/env python
import paramiko,datetime,os
hostname='192.168.0.102'
username='root'
password='abc123'
port=22
local_dir='/tmp/'
remote_dir='/tmp/test/'
try:
t=paramiko.Transport((hostname,port))
t.connect(username=username,password=password)
sftp=paramiko.SFTPClient.from_transport(t)
#files=sftp.listdir(dir_path)
files=sftp.listdir(remote_dir)
for f in files:
print''
print'#########################################'
print'Beginning to download file from %s %s ' % (hostname,datetime.datetime.now())
print'Downloading file:',os.path.join(remote_dir,f)
sftp.get(os.path.join(remote_dir,f),os.path.join(local_dir,f))#下载
#sftp.put(os.path.join(local_dir,f),os.path.join(remote_dir,f))#上传
print'Download file success %s ' % datetime.datetime.now()
print''
print'##########################################'
t.close()
except Exception:
print"connect error!"

遇见资源网 python python上传和下载 http://www.ox520.com/15783.html

常见问题

相关文章

发表评论
暂无评论
官方客服团队

为您解决烦忧 - 24小时在线 专业服务