What is a simple way of downloading a file from a URL path?
Try using this:
private void downloadFile(string url) { string file = System.IO.Path.GetFileName(url); WebClient cln = new WebClient(); cln.DownloadFile(url, file); }