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);
时间: 2024-10-05 05:50:22