码迷,mamicode.com
首页 > 编程语言 > 详细

python ftp远程创建层级目录

时间:2018-10-19 14:04:24      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:remote   服务   get   exce   for   cep   path   注释   根据   

ftp在远程服务器上只能创建当前子目录,并不能创建层级目录, 现有python算法如下:
def create_remote_dir(ftp, target_dir):
try:
ftp.cwd(target_dir) # 切换工作路径
except Exception as e:
ftp.cwd(‘~‘) # 切换到远程根目录下(不一定时盘符, 服务器)
base_dir, part_path = ftp.pwd(), target_dir.split(‘/‘) # 分割目录名
for p in part_path[1:-1]: # 根据实际target_dir决定切片位置, 如果是目 # 录, 使用[1:], 文件绝对路径使用[1:-1], 列表第0个切割之后为空串
base_dir = base_dir + p + ‘/‘ # 拼接子目录
try:
ftp.cwd(base_dir) # 切换到子目录, 不存在则异常
except Exception as e:
print(‘INFO:‘, e)
ftp.mkd(base_dir) # 不存在创建当前子目录
return ftp
参数说明: 当前ftp连接对象, target_path: 远程路径,当前时带文件名(可带后缀)的绝对物理地址, 具体语句作用见代码详细注释

python ftp远程创建层级目录

标签:remote   服务   get   exce   for   cep   path   注释   根据   

原文地址:http://blog.51cto.com/1710161254/2304921

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!