python ftp操作脚本&常用函数
需求:快速进行ftp上传 ,下载,查询文件
原来直接在shell下操作:
需要【连接,输用户名,输密码,单文件操作,存在超时限制】
太过于繁琐,容易操作失败
脚本改进:
一句命令,搞定多文件上传,下载,查询,列表等操作
后期可以加入更强大的功能
直接上脚本:
- #!/usr/bin/python
- #ftp.py
- #this script is used to make some ftp operations more convenient
- #add upload and download operations 20111210 version0.1
- import sys,os,ftplib,socket
- CONST_HOST = "your ftp host or ip"
- CONST_USERNAME = "your username"
- CONST_PWD = "your password"
- CONST_BUFFER_SIZE = 8192
- COLOR_NONE = "\033[m"
- COLOR_GREEN = "\033[01;32m"
- COLOR_RED = "\033[01;31m"
- COLOR_YELLOW = "\033[01;33m"
- def connect():
- try:
- ftp = ftplib.FTP(CONST_HOST)
- ftp.login(CONST_USERNAME,CONST_PWD)
- return ftp
- except socket.error,socket.gaierror:
- print("FTP is unavailable,please check the host,username and password!")
- sys.exit(0)
- def disconnect(ftp):
- ftp.quit()
- def upload(ftp, filepath):
- f = open(filepath, "rb")
- file_name = os.path.split(filepath)[-1]
- try:
- ftp.storbinary('STOR %s'%file_name, f, CONST_BUFFER_SIZE)
- except ftplib.error_perm:
- return False
- return True
- def download(ftp, filename):
- f = open(filename,"wb").write
- try:
- ftp.retrbinary("RETR %s"%filename, f, CONST_BUFFER_SIZE)
- except ftplib.error_perm:
- return False
- return True
- def list(ftp):
- ftp.dir()
- def find(ftp,filename):
- ftp_f_list = ftp.nlst()
- if filename in ftp_f_list:
- return True
- else:
- return False
- def help():
- print("help info:")
- print("[./ftp.py l]\t show the file list of the ftp site ")
- print("[./ftp.py f filenamA filenameB]\t check if the file is in the ftp site")
- print("[./ftp.py p filenameA filenameB]\t upload file into ftp site")
- print("[./ftp.py g filenameA filenameB]\t get file from ftp site")
- print("[./ftp.py h]\t show help info")
- print("other params are invalid")
- def main():
- args = sys.argv[1:]
- if len(args) == 0:
- print("Params needed!")
- sys.exit(0)
- ftp = connect()
- if args[0] == "p":
- f_list = args[1:]
- for up_file in f_list:
- if not os.path.exists(up_file):
- print(("UPLOAD: %s "+COLOR_RED+"FAILED"+COLOR_NONE+" :file not exist")%up_file)
- continue
- elif not os.path.isfile(up_file):
- print(("UPLOAD: %s "+COLOR_RED+"FAILED"+COLOR_NONE+" :%s is not a file")%(up_file,up_file))
- continue
- if upload(ftp, up_file):
- print(("UPLOAD: %s "+COLOR_GREEN+"SUCCESS"+COLOR_NONE)%up_file)
- else:
- print(("UPLOAD: %s "+COLOR_RED+"FAILED"+COLOR_NONE)%up_file)
- elif args[0] == "g":
- f_list = args[1:]
- for down_file in f_list:
- if not find(ftp,down_file):
- print(("DOWNLOAD: %s "+COLOR_RED+"FAILED"+COLOR_NONE+" :%s is not in the ftp site")%(down_file,down_file))
- continue
- if download(ftp, down_file):
- print(("DOWNLOAD: %s "+COLOR_GREEN+"SUCCESS"+COLOR_NONE)%down_file)
- else:
- print(("DOWNLOAD: %s "+COLOR_RED+"FAILED"+COLOR_NONE)%down_file)
- elif args[0] == "l":
- list(ftp)
- elif args[0] == "f":
- f_list = args[1:]
- for f_file in f_list:
- if find(ftp,f_file):
- print(("SEARCH: %s "+COLOR_GREEN+"EXIST"+COLOR_NONE)%f_file)
- else:
- print(("SEARCH: %s "+COLOR_RED+"NOT EXIST"+COLOR_NONE)%f_file)
- elif args[0] == "h":
- help()
- else:
- print("args are invalid!")
- help()
- disconnect(ftp)
- if __name__ == "__main__":
- main()
常用函数:
用手册查看,以下只是简略,因为没用用到,[待整理]:
login(user='',passwd='', acct='') 登录到FTP 服务器,所有的参数都是可选的
pwd() 当前工作目录
cwd(path) 把当前工作目录设置为path
dir([path[,...[,cb]]) 显示path 目录里的内容,可选的参数cb 是一个回调函数,会被传给retrlines()方法
nlst([path[,...]) 与dir()类似,但返回一个文件名的列表,而不是显示这些文件名
retrlines(cmd [, cb]) 给定FTP 命令(如“RETR filename”),用于下载文本文件。可选的回调函数cb 用于处理文件的每一行
retrbinary(cmd, cb[,bs=8192[, ra]]) 与retrlines()类似,只是这个指令处理二进制文件。回调函数cb 用于处理每一块(块大小默认为8K)下载的数据。
storlines(cmd, f) 给定FTP 命令(如“STOR filename”),以上传文本文件。要给定一个文件对象f
storbinary(cmd, f[,bs=8192]) 与storlines()类似,只是这个指令处理二进制文件。要给定一个文件对象f,上传块大小bs 默认为8Kbs=8192])
rename(old, new) 把远程文件old 改名为new
delete(path) 删除位于path 的远程文件
mkd(directory) 创建远程目录
python ftp操作脚本&常用函数的更多相关文章
- Python学习笔记之常用函数及说明
Python学习笔记之常用函数及说明 俗话说"好记性不如烂笔头",老祖宗们几千年总结出来的东西还是有些道理的,所以,常用的东西也要记下来,不记不知道,一记吓一跳,乖乖,函数咋这么多 ...
- 1. python 字符串简介与常用函数
1. python中的字符串简介与常用函数 在python中,字符串变成了一个强大的处理工具集,他是不可变的,也就是说字符串包含字符与字符的顺序,他不可以原处修改 字符串是我们后面需要学习的稍大一点的 ...
- python for循环及常用函数
python for循环 格式: for iterating_var in sequence: statements(s) ###################################### ...
- PHP操作文件常用函数
[获取文件信息的函数] basename($path[,扩展名]) 返回文件路径中去掉路径后的文件名称."/root/a.txt"输出a.txt;带上.txt输出a. dirnam ...
- Python文件或目录操作的常用函数
◆ os.listdir(path) Return a list containing the names of the entries in the directory given by path. ...
- NPOI操作Excel常用函数
最近因项目接触了NPOI,感觉还是蛮不错的,网络上的教程普遍版本较老,本篇记录所常用操作,采用NPOI 2.0版本. 推荐: NPOI官方网站 NPOI 1.2.4/1.2.5 官方教程 新建Exce ...
- Python之Numpy库常用函数大全(含注释)
前言:最近学习Python,才发现原来python里的各种库才是大头! 于是乎找了学习资料对Numpy库常用的函数进行总结,并带了注释.在这里分享给大家,对于库的学习,还是用到时候再查,没必要死记硬背 ...
- Python之Numpy库常用函数大全(含注释)(转)
为收藏学习,特转载:https://blog.csdn.net/u011995719/article/details/71080987 前言:最近学习Python,才发现原来python里的各种库才是 ...
- c语言字符串操作,及常用函数
一,字符串操作 1 . strcpy : 拷贝 char *stpcpy(char *destin, char *source); 2 . strcat : 拼接 char *strcat(char ...
随机推荐
- Mysql服务优化
Mysql服务优化 Mysql服务加速优化的6个阶段 硬件层面优化 操作系统层面优化 Mysql数据库层面优化 网站集群架构层面优化 安全优化 流程.制度控制优化 1.硬件层面优化 CPU ...
- 多页面应用_vue
vue框架 vue:解决前端大型应用的开发,将之前几十个.几百个.更多的HTML页面,集成为1个HTML页面(当页面应用) jQuery:前端方法库. bootstrap:UI组件库. angular ...
- 20155303 2016-2017-2 《Java程序设计》第三周学习总结
20155303 2016-2017-2 <Java程序设计>第三周学习总结 教材学习内容总结 第四章 学会如何查询Java API文件对于Java的学习很有帮助,可以了解到如何使用各种方 ...
- C++ 之Boost 实用工具类及简单使用
本文将介绍几个 Boost 实用工具类,包括 tuple.static_assert.pool.random 和 program_options等等.需要对标准 STL 具备一定的了解才能充分理解本文 ...
- dstat 服务器性能查看命令【转】
一. 安装和简解 # yum -y install dstat# dstat CPU状态:CPU的使用率.这项报告更有趣的部分是显示了用户,系统和空闲部分,这更好地分析了CPU当前的使用状况.如果你看 ...
- MySQL 高可用:mysql+Lvs+Keepalived 负载均衡及故障转移
系统信息: mysql主库 mysql从库 VIP 192.168.1.150 mysql 主主同步都设置 auto-increment-offset,auto-increment-increment ...
- Python类相关的装饰器
一.装饰器装饰类方法 from functools import wraps def wrapper(func): @wraps(func) def inner(self,*args,**kwargs ...
- Django BoundField
一.BoundField from django.forms.boundfield import BoundField BoundField是一个将字段添加数据的一个类,给对应的form字段封装上数据 ...
- MySQL 联合查询
联合查询:将多次查询(多条select语句), 在记录上进行拼接(字段不会增加) 基本语法:多条select语句构成: 每一条select语句获取的字段数必须严格一致(但是字段类型无关) 语法 Sel ...
- Python_oldboy_自动化运维之路_全栈考试(五)
1.执行 Python 脚本的两种方式 [root@localhost tmp]# cat a.py #!/usr/bin/python # -*- coding: UTF-8 -*- print & ...