I need to get a list of files from an FTP server.
The FTP server has over 10, 000 files.
I only need the files that start with ABC...
(which is like 10 files).
But new files get added every 10 minutes.
So I only need to get the files that start with ABC
that have been created in the last 10 minutes.
How do I achieve this? Can I do this from C# natively?
What I have seen so far, I can connect to the FTP server, get a list of ALL the files and check the name of each one... this seems like it would take a long time if the number of files increases...
Ta