import asyncio
import aioftp
async def get_files_path(host, port, login, password):
async with aioftp.ClientSession(host, port, login, password) as client:
for path, info in (await client.list(PATH)):
print(path)
asyncio.run(get_files_path(HOST, port, USERNAME, PASSWORD))
It seems that aioftp fails to list up the files created after 02/29/2020 00:00.
When I used Python ftplib, I could get the correct number of files totally the same with I was checking on FileZilla.
Can you check this issue? Thanks.
Hi,
It seems that aioftp fails to list up the files created after 02/29/2020 00:00.
When I used Python ftplib, I could get the correct number of files totally the same with I was checking on FileZilla.
Can you check this issue? Thanks.