Link to home
Start Free TrialLog in
Avatar of Tek Info
Tek Info

asked on

Program to monitor a remote FTP folder.

I would like either a script or a program to monitor a remote FTP folder.
When a new file arrives, I would like it to be copied over to a local folder on a Windows based computer.
No email notification is needed, however this would be a good feature but not necessary.
Thanks in advance. 
Avatar of David Favor
David Favor
Flag of United States of America image

How you do this depends on several factors.

1) OS running on server.

2) OS running on client.

3) If you have access to server to make changes.

If you're talking about doing this on the client side, with no control over server side, you'll just write a script to run at some frequency to probe the FTP server for new files.

Note: This requires the FTP server to allow directory listing.
Avatar of Tek Info
Tek Info

ASKER

"If you're talking about doing this on the client side, with no control over server side, you'll just write a script to run at some frequency to probe the FTP server for new files."
Yes this is what I had asked for help on. 
You'll write a client side script to probe/poll your FTP server looking for new files.
ASKER CERTIFIED SOLUTION
Avatar of Tek Info
Tek Info

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Robo-FTP (https://www.robo-ftp.com) has a built-in feature for doing exactly what you described. It can monitor a remote folder in real-time (or on a scheduled basis, if you prefer) and copy new files that appear on the FTP site to a folder on your Windows PC. It can also do a lot of error handling (like notifying you if the server becomes unreachable, etc.).