python连接远程ftp服务器并列出目录下文件的方法
时间:2021-11-09 10:29 作者:admin
本文实例讲述了python/' target='_blank'>python连接远程ftp服务器并列出目录下文件的方法。分享给大家供大家参考。具体如下:
这段Python代码用到了pysftp模块,使用sftp协议,对数据进行加密传输
import pysftpsrv = pysftp.Connection(host="your_FTP_server", username="your_username",password="your_password")# Get the directory and file listingdata = srv.listdir()# Closes the connectionsrv.close()# Prints out the directories and files, line by linefor i in data: print i
希望本文所述对大家的Python程序设计有所帮助。
(责任编辑:admin)