[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Kosta

9/20/2004 1:21:00 PM


Greetings.

I need to copy all files from remote http location to local server.
Have no problem copying one file out of time providing url for
source and target using HttpWebRequest and HttpWebResponse objects.

What I can't figure out is how to iterate through all files in http folder
similar to

foreach (string filePath in Directory.GetFiles(myFolder))
{
...
}

Anyone done something similar?