码迷,mamicode.com
首页 > Web开发 > 详细

保存文件到当前项目中 适用于项目中的文件上传

时间:2015-04-15 18:40:39      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:

 1 string f = System.AppDomain.CurrentDomain.BaseDirectory.ToString();//获取项目当前目录
 2 
 3 //保存地址
 4 string savePath = "\\files\\网站发布\\" + string.Format("{0:yyyy-MM-dd}", DateTime.Now) + "\\" + fbwzID + "\\" + mTpxx.TPBT + ".html";//虚拟路径
 5 string FilePath = f + savePath;//绝对物理路径(文件真正保存的位置)
 6 
 7 
 8 if (!Directory.Exists(Path.GetDirectoryName(FilePath)))
 9 {
10 //创建路径
11 Directory.CreateDirectory(Path.GetDirectoryName(FilePath));
12 }
13 
14 //创建HTML文件,写入HTML,全路径带扩展名
15 File.Delete(FilePath);
16 File.AppendAllText(FilePath, strHtml.ToString(), Encoding.Default);

保存文件到当前项目中 适用于项目中的文件上传

标签:

原文地址:http://www.cnblogs.com/zecVip/p/4429167.html

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