Be wary of using the Webclient.downloadfile (String uri,string FilePath) method

Source: Internet
Author: User

Original: Beware of using the Webclient.downloadfile (String uri,string FilePath) method

The Webclient.downloadfile (string uri,string FilePath) method is used to request a URL and to store the requested content in a local file.

Using this method, if FilePath is an already existing file, if an error occurs during DownloadFile's execution of the Web request, the previous content of the filepath is deleted. Here is the validation code, and another option.

classProgram
{
Static voidMain (string[] args)
{
Const stringFilePath= @"c:\a.html";
Const stringURL= "http://dat0a11.book.hexun.com/chapter-1031-1-7.shtml";
Try
{
using(WebClient WC= NewWebClient ())
{
//WC. DownloadFile ("http://dat0a11.book.hexun.com/chapter-1031-1-7.shtml", FilePath);

stringHTML=WC. downloadstring (URL);
using(StreamWriter writer= NewStreamWriter (FilePath,falseWc. Encoding))
{
Writer. Write (HTML);
Writer. Flush ();
}
}
}
Catch(Exception ex)
{
Console.WriteLine (ex. Message);
}
Console.read ();
}
}

Be wary of using the Webclient.downloadfile (String uri,string FilePath) method

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.