我想使用python从FTP服务器下载最新文件。我能够连接到服务器并下载特定目录中的所有文件,但是我不知道如何在主题中查找带有特定关键字的最新文件。以下是我正在使用的代码。但是它将返回所有带有* .png键名的文件。我不知道如何在这里应用os.path.getctime来获取最新文件。这就是我想要的所有帮助。 import ftplib import os ftp = ftplib.FTP('test.rebex.net', 'demo','password') ftp.retrlines('LIST') ftp.cwd("/pub") ftp.retrlines('LIST') ftp.cwd("example") ftp.retrlines('LIST') filematch='*.png' target_dir='C:/Users/muzamal.pervez/Desktop/OPD Claims' for filename in ftp.nlst(filematch): target_file_name = os.path.join(target_dir,os.path.basename(filename)) with open(target_file_name,'wb') as fhandle: ftp.retrbinary('RETR %s' %filename, fhandle.write)
添加回答
举报
0/150
提交
取消