Python实现自动化FTP操作的方法教程
程序员文章站
2022-05-29 13:22:01
我们常用FTP协议实现自动化,集中式的文件备份,要求做到账号登录、文件上传与下载、退出等自动化操作。那么,我们就一起来实现一个自动化FTP操作的小程序,具体代码如下:
# -...
我们常用FTP协议实现自动化,集中式的文件备份,要求做到账号登录、文件上传与下载、退出等自动化操作。那么,我们就一起来实现一个自动化FTP操作的小程序,具体代码如下:
# -*- coding:UTF-8 -*- ''' Created on 2018年1月9日 @author: liuyazhuang ''' #使用unicode编码 from __future__ import unicode_literals import pexpect import sys from com.lyz.chapter5.sshdemo import child #运行ftp命令 child = pexpect.spawn('ftp ftp.openbsd.org') #(?i)标识后面的自妇产正则匹配忽略大小写 child.expect('(?i)name .*: ') #输入ftp账号信息 child.sendline('账号') #匹配密码输入提示 child.expect('(?i)password') #输入ftp密码 child.sendline('密码') child.expect('ftp> ') #启用二进制传输模式 child.sendline('bin') child.expect('ftp> ') #下载robots.txt child.sendline('get robot.txt') child.expect('ftp> ') #输出匹配的ftp > 之前的输入与输出 sys.stdout.write(child.before) print "Escape character is '^]'. \n" sys.stdout.write(child.after) sys.stdout.flush() #调用interact让出控制权,用户可以继续当前的会话手工控制子程序,默认输入“^]”字符跳出 child.interact() child.sendline('byte') child.close()