Ricardo Felgueiras
Ricardo Felgueiras

Reputation: 3719

Test upload complete to FTP server

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.

Upvotes: 1

Views: 2136

Answers (2)

NinethSense
NinethSense

Reputation: 9028

Use FileSystemWatcher

Similar thread.

Upvotes: 1

Dean
Dean

Reputation: 5946

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

Upvotes: 1

Related Questions