I tried to download http file to c drive, but it did not work.
Here is the code I wrote :
Code:
using System;
using System.Collections.Generic;
using System.Text;
using System.Net;
namespace t2
{
class Program
{
static void Main(string[] args)
{
WebRequestMethods.File.DownloadFile("http://www.eng.tau.ac.il/students/forms/t4.pdf", "c:");
}
}
}

