- Joined
- Oct 25, 2004
- Location
- 127.0.0.1
i need to copy a file from my webserver to the dir that my app is running from. at the moment i have:
can the file.copy() only be used locally? if so what can i use to download the file ?
thanks
Code:
url = "http://www.**********.co.uk/ww_iplog837532.csv";
localname = url.Substring(url.LastIndexOf("/") + 1);
File.Copy(url, localname);
can the file.copy() only be used locally? if so what can i use to download the file ?
thanks