/ / webclient.downloadfile nie zapisuje całkowicie strony - c #, .net, webclient, webclient-download

webclient.downloadfile nie zapisuje całkowicie strony - c #, .net, webclient, webclient-download

Używam następującego kodu, aby zapisać stronę internetową w mojej aplikacji C #, ale strona nie jest zapisana całkowicie:

WebClient webClient = new WebClient();
webClient.DownloadFile("http://jahanesanat.ir/currency.html", @"d://test/mytest66.html");

niektóre części strony nie są zapisywane w lokalnym pliku Co idzie źle?

Odpowiedzi:

0 dla odpowiedzi № 1

Może d: // test / ma odmowę dostępu

Użyj tego przykładu z MSDN

string remoteUri = "http://www.contoso.com/library/homepage/images/";
string fileName = "ms-banner.gif", myStringWebResource = null;
// Create a new WebClient instance.
WebClient myWebClient = new WebClient();
// Concatenate the domain with the Web resource filename.
myStringWebResource = remoteUri + fileName;
Console.WriteLine("Downloading File "{0}" from "{1}" .......nn", fileName, myStringWebResource);
// Download the Web resource and save it into the current filesystem folder.
myWebClient.DownloadFile(myStringWebResource,fileName);
Console.WriteLine("Successfully Downloaded File "{0}" from "{1}"", fileName, myStringWebResource);
Console.WriteLine("nDownloaded file saved in the following file system folder:nt" + Application.StartupPath)