我可以下载一些包含所有内容(图像、脚本 .. 等)的 html 页面作为文件列表或单个 Web 存档吗?这只给我标记:
using (WebClient client = new WebClient())
{
client.DownloadFile("http://www.youtube.com", @"D:\anyfile.html");
//or
string htmlCode = client.DownloadString("http://www.yotube.com");
// save htmlcode ...
}
可能有任何API吗?