标签: c# asp.net file overwrite
if (!System.IO.File.Exists(Server.MapPath(klasoradi + htmlname + ".html"))) { System.IO.File.WriteAllText(Server.MapPath(klasoradi + htmlname + ".html"), htmltext); }
我使用此代码创建和保存我的html文件。但我无法覆盖该文件。
你能帮我解决这个问题吗?
答案 0 :(得分:1)
根据MSDN WriteAllText(string,string)将覆盖文件。因此,您需要做的就是删除初始if语句,它将创建文件或覆盖它。
WriteAllText(string,string)