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

保存文件到当前项目中

时间:2015-03-31 12:23:32      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

string f = System.AppDomain.CurrentDomain.BaseDirectory.ToString();//获取项目当前目录

//保存地址
string savePath = "\\files\\网站发布\\" + string.Format("{0:yyyy-MM-dd}", DateTime.Now) + "\\" + fbwzID + "\\" + mTpxx.TPBT + ".html";//虚拟路径
string FilePath = f + savePath;//绝对物理路径(文件真正保存的位置)


if (!Directory.Exists(Path.GetDirectoryName(FilePath)))
{
//创建路径
Directory.CreateDirectory(Path.GetDirectoryName(FilePath));
}

//创建HTML文件,写入HTML,全路径带扩展名
File.Delete(FilePath);
File.AppendAllText(FilePath, strHtml.ToString(), Encoding.Default);

保存文件到当前项目中

标签:

原文地址:http://www.cnblogs.com/zhuyusoft/p/4380415.html

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