tags:

views:

86

answers:

2

I have an ftp build site where new builds will be updated. It will create a new folder named "Build XXXXX" in a specific ftp location for every new build. I need to download the build from a location inside "Build XXXXX"directory (eg. Builds\Build XXXXX\German\iso\German.iso). Here I can't predict number XXXXX.

I'm planning of writing a .NET application to automatically monitor the ftp location for any new Build XXXXX folder and if it is present, the application should download the file at the specified location (ie \German\iso).

How can I do that. Is there any API available for selectively downloading files.

Also, is there any tools already available to do this?

+1  A: 

I don't think there will be any tool tailor made for your requirement. But if you have the client library, you can make one yourself.

Milen
+1  A: 

You can simply use the methods of the WebClient class for this.

John Saunders