摘要:
首先 1 string filename = this.txtname.Text.Trim(); 2 string filecontent = this.txtcontent.Text.Trim(); 3 4 string FileDir = Server.MapPath("~/Files"); 5 if (!Directory.Exists(FileDir)) //判断是否存在此文件夹 6 { 7 Directory.CreateDirectory(FileDir); 8 } 9 string FileTxtPath = "~/Files/" + fi 阅读全文