猪二哥的小园子儿
小园子儿里的猪二哥
摘要: public bool UnRAR(string destPath, string rarfilePath) { try { // destPath = @"E:\youxiaodi\temp"; //目标位... 阅读全文
posted @ 2014-05-07 17:03 猪小娣 阅读(946) 评论(0) 推荐(0) 编辑
摘要: //文件远程下载 WebClient client = new WebClient(); Uri uri = new Uri(url); client.DownloadFile(Uri uri,String filename);//文件一定得存在不然会报错所以在删除文件时先判断这个文件是否存... 阅读全文
posted @ 2014-05-07 16:59 猪小娣 阅读(356) 评论(0) 推荐(0) 编辑
摘要: HttpWebRequest myReq = (HttpWebRequest)WebRequest.Create(path+filename); //创建一个请求(获得需要的文件信息) HttpWebResponse myRes = (HttpWebResponse)myReq.GetRe... 阅读全文
posted @ 2014-05-07 11:51 猪小娣 阅读(975) 评论(0) 推荐(0) 编辑