保存文件到当前项目中 适用于项目中的文件上传
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);
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。