问题描述
- 如何利用程序自动执行ftp上传下载操作?
-
最近工作中反复要用ftp工具,对某些固定的文件做下载,修改,再上传的操作,觉得很麻烦。想 编一个程序,可以自动执行ftp链接,对于某个设置好的路径和文件进行上传下载,想请教大家实现的方法,比如可以调用哪些API之类的?非常感谢
解决方案
可以使用perl,python等语言完成。
python可以使用ftplib。
import ftplib
session = ftplib.FTP('xxx.xxx.xxx.xxx','username','password')
session.cwd('dir')
file = open('tmp_ip_file','rb') # file to send
session.storbinary('STOR tmp_ip_file', file) # send the file
file.close() # close file and FTP
session.quit()
时间: 2024-09-30 21:05:10