python ftp編程

來源:互聯網
上載者:User

python內建有ftp編程的模組ftplib

直接貼幾行程式碼分析

import os, sysfrom ftplib import FTPftpsite = "ftp.site"userinfo = ('aaron', getpass('123456'))print('Connecting')connection = ftplib.FTP(sitename)connnection.login(*userinfo)  ##() for anonymous loginconnection.nlst()  ##nlst() gives files list                   ##dir() gives full details)                   connection.cwd(".")  ##cd to directoryfilename = 'filename'##########download a file#############localfile = open(filename, 'wb')       ##local file to store downloadconnection.retrbinary('RETR ' + filename, localfile.write, 1024)localfile.close()##########download a file#######################upload a file#############localfiletoupload = open(filename, 'rb')connection.storbinary('STOR ' + filename, localfiletoupload, 1024)##########upload a file#############connection.quit()

上面的代碼未經測試!

主要是列舉幾個常見的操作:

登入ftp網站:

connection = ftplib.FTP(sitename)connnection.login(*userinfo)  ##() for anonymous login

nlst()  #擷取檔案清單

retrbinary()  #下載檔案

storbinary()  #上傳檔案

cwd('dir')  #切換到目錄

只列舉這幾個,其它一些操作查看help()

推薦一本python書:python programming(這本書沒有講python基礎文法,應用涵蓋情境比較廣,建議有一點python基礎的人看)

connection = ftplib.FTP(sitename)connnection.login(*userinfo)  ##() for anonymous login
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.