首页 > 编程语言 > 详细

python操作ftp文件

时间:2019-01-02 18:40:42      阅读:129      评论:0      收藏:0      [点我收藏+]
from ftplib import FTP

ftp = FTP(‘ftp.abc.com‘)
ftp.login(user=‘username‘, passwd=‘********‘)
ftp.cwd(‘/path‘)    #entry directory path
# ftp.retrlines(‘LIST‘)
files = ftp.dir()
print(files)
ftp.quit()

def grabFile():
    """
    Download filename to local current folder with name localfile
    """

    filename = ‘CAP2‘
    localfile = open(‘CAP2COPY‘, ‘wb‘)
    ftp.retrbinary(‘RETR ‘ + filename, localfile.write, 1024)
    print(‘Download is finished!‘)
    ftp.quit()
    localfile.close()

# grabFile()

def placeFile():
    """
    Upload filename to ftp server with same filename
    """

    filename = ‘example.ini‘
    ftp.storbinary(‘STOR ‘+filename, open(filename, ‘rb‘))
    ftp.quit()

# placeFile()

def deleteFile():
    """
    Delete filename from ftp server
    """

    filename = ‘example.ini‘
    ftp.delete(filename)
    files = ftp.dir()
    print(files)
    ftp.quit()

# deleteFile()

 参考:

https://www.pythonforbeginners.com/code-snippets-source-code/how-to-use-ftp-in-python/

https://pythonprogramming.net/ftp-transfers-python-ftplib/

 

python操作ftp文件

原文:https://www.cnblogs.com/forcheny/p/10209615.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!