I’m trying to do an application that warns me when a user finishes uploading a file to my FTP server.
What I want is: when a user completes its transfer to my FTP server, I want that my application warn me.
How can I do that? In C#.NET…
Thanks. Best regards.
Can you not have a small application that utilises the file watcher classes in .Net and when a file is created on the ftp location, send a email to yourself(or take any action you do require)?
See here for details:
File Watcher
This question may be of use as well
C# FileSystemWatcher And FTP