FTP下载文件 + 运行程序

Posted zhemeshenqi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了FTP下载文件 + 运行程序相关的知识,希望对你有一定的参考价值。

FTP 下载

#!/usr/bin/python
# -*- coding: utf-8 -*-
"""
FTP常用操作
"""
from ftplib import FTP
import os
class FTP_OP(object):
    def __init__(self, host, username, password, port):
        """
        初始化ftp
    :param host: ftp主机ip
    :param username: ftp用户名
    :param password: ftp密码
    :param port:  ftp端口 (默认21)
    """
    self.host = host
    self.username = username
    self.password = password
    self.port = port
    def ftp_connect(self):
    """
    连接ftp
    :return:
    """
    ftp = FTP()
    ftp.set_debuglevel(0)  # 不开启调试模式
    ftp.connect(host=self.host, port=self.port)  # 连接ftp
    ftp.login(self.username, self.password)  # 登录ftp
    return ftp
    def download_file(self, ftp_file_path, dst_file_path):
    """
    从ftp下载文件到本地
    :param ftp_file_path: ftp下载文件路径
    :param dst_file_path: 本地存放路径
    :return:
    """
    buffer_size = 10240  #默认是8192
    ftp = self.ftp_connect()
    print ftp.getwelcome()  #显示登录ftp信息
    file_list = ftp.nlst(ftp_file_path)
    for file_name in file_list:
        ftp_file = os.path.join(ftp_file_path, file_name)
        write_file = os.path.join(dst_file_path, file_name)
        print file_name
        if file_name.find(.jpg)>-1 and not os.path.exists(write_file):
            print "file_name:"+file_name
            #ftp_file = os.path.join(ftp_file_path, file_name)
            #write_file = os.path.join(dst_file_path, file_name)
            with open(write_file, "wb") as f:
                ftp.retrbinary(RETR {0}.format(ftp_file), f.write, buffer_size)
                f.close()
    ftp.quit()

if __name__ == __main__:
    host = "10.201.xx.xx"
    username = "xxx"
    password = "xxx"
    port = "9999"
    ftp_file_path = "/upload/20160726"
    dst_file_path = "/home/gdmt/master/py/tmp"
    ftp = FTP_OP(host=host, username=username, password=password, port=port)
    ftp.download_file(ftp_file_path=ftp_file_path, dst_file_path=dst_file_path)

 

程序运行

import os
os.system("python filename.py")

 

以上是关于FTP下载文件 + 运行程序的主要内容,如果未能解决你的问题,请参考以下文章

写个小程序从FTP上下载文件

Java ftp 上传文件和下载文件

java程序在linux系统下运行上传文件到ftp服务器出错代码 “451 参数错误”

应用程序 QT 崩溃(带进度条的 ftp 下载)

windows环境下c语言支持ftp和http多线程下载的客户端

springboot项目 从FTP服务器下载文件到本地,并读取文件中的内容代码示例(亲测可用)