码迷,mamicode.com
首页 > 其他好文 > 详细

C# 文件操作

时间:2014-04-30 23:34:03      阅读:443      评论:0      收藏:0      [点我收藏+]

标签:com   http   style   blog   class   div   img   code   java   c   log   

【创建目录】

using System.IO;

Directory.CreateDirectory(FilePath);

【使用WriteFile下载文件】

bubuko.com,布布扣
using System.Net

private
string fileName = HttpContext.Current.Server.UrlEncode("规范.rar"); private string filePath = HttpContext.Current.Server.MapPath("规范.rar"); //使用WriteFile下载文件 protected void btnDL2_Click(object sender, EventArgs e) {   FileInfo info = new FileInfo(filePath);   long fileSize = info.Length;   Response.Clear();   Response.ContentType = "application/octet-stream";   Response.AddHeader("Content-Disposition", "attachement;filename=" + fileName);   //指定文件大小   Response.AddHeader("Content-Length", fileSize.ToString());   Response.WriteFile(filePath, 0, fileSize);   Response.Flush();   Response.Close(); }
bubuko.com,布布扣

 

C# 文件操作,布布扣,bubuko.com

C# 文件操作

标签:com   http   style   blog   class   div   img   code   java   c   log   

原文地址:http://www.cnblogs.com/ymtianyu/p/3701315.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!