从 Python 的 FTP 服务器下载更改名称的文件

Download file with changing name from FTP server in Python

我有一个设置,定期将一个文件放在我的 FTP 服务器目录中。我正在寻找将它拉入我的 Python 脚本的最佳方法。问题是每次存放文件时名称都会更改。 IE。第一个文件是 FILE0001.CSV,第二个是 FILE0002.CSV,第三个是 FILE0003.CSV,依此类推。我目前的想法是在 txt 中存储一个值为 1 的变量,提取该变量,向其添加一个,用它来引用文件,然后重新存储该变量。类似这样的东西(假设带有该值的 txt 已经创建并在文件夹中):

with open('count.txt') as fp:
    c = int(fp.read())

c = c+1

ftp = FTP('localhost')
ftp.login(username, password)
ftp.cwd('dropoff')
with open('FILE000' + c + '.CSV', 'wb') as fp:
    ftp.retrbinary('RETR FILE000' + c + '.CSV', fp.write)
ftp.quit()

with open('count.txt', 'w') as fp:
    fp.write(str(c))

这个方法好像有点迂回,有没有更好的and/or更直接的方法?

无法更改传入的文件名或保留名称并覆盖它。

如果服务器上只有一个文件,请向服务器询问文件名并下载:

ftp.cwd('dropoff')

files = ftp.nlst() 
if (len(files) != 1):
    raise Exception("Expected only one file")

thefile = files[0]
with open(thefile, 'wb') as fp:
    ftp.retrbinary('RETR ' + thefile, fp.write)