I have a external FTP and I need to process file as soon as it it uploaded into it.
I have researched and found these working solutions.
I see the only way to do this is using a polling mechanism by using a timer or a windows service to check the FTP for a specific interval.
Would there be any solution exactly like .NET FilesystemWatcher, which triggers a method as soon as the file is uploaded into ftp?
Ftp file watcher like SystemFileWatcher in .net? -> Seemed similar, but doesnt quite answer my question.