本文介绍了将网页保存到硬盘的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
am正在下载网页并将其保存到硬盘,但是看起来lyk我的代码有问题,将页面保存到硬盘有我的代码,请告诉我它有什么问题
(System.IO.File.Copy("@ C:\\ Program Files(x86)\\ Internet Explorer",strResult);)
am downloading a webpage and save it to the hard drive , but it looks lyk there is something wrong with my code that save the page to the hard drive there is my code , tell me what wrong with it
(System.IO.File.Copy("@C:\\Program Files (x86)\\Internet Explorer", strResult);)
推荐答案
(System.IO.File.Copy("@C:\\Program Files (x86)\\Internet Explorer", strResult);)
与此:
with this:
(System.IO.File.Copy(@"C:\\Program Files (x86)\\Internet Explorer", strResult);)
这样就可以完成您的工作.
希望这会有所帮助.
快乐编码:)
this will get your job done.
Hope this helps.
Happy Coding :)
这篇关于将网页保存到硬盘的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!