python鏈接遠程ftp服務器并列出目錄下的文件
python鏈接遠程ftp服務器并列出目錄下的文件,這段python代碼用到了pysftp模塊,使用sftp協議,對數據進行加密傳輸
import pysftpsrv = pysftp.Connection(host="your_FTP_server", username="your_username", password="your_password")
Get the directory and file listing
data = srv.listdir()
Closes the connection
srv.close()
Prints out the directories and files, line by line
for i in data: print i</pre>
本文由用戶 pythopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!