C# iterator for async file copy
- by uno
Been running in circles to find the best solution for my client. We have a server that images are uploaded via ftp. I want to write an application that scans this server at frequent intervals and if it finds files it copies them to another,processing server.
So if during a time cycle, my app finds that there are 100 files, i want to start copying as many files as i can across to the processing server
i figured delegates would be the way to go but now i come across iterators...what do the experts say?