将内容写在文档中并保存在本地某个文件夹中

将内容写在文档中并保存在本地中,我封装了一个方法供大家使用!
话不多说直接上代码

 public void DownFiless(string filename,string filecontent) {
 				//获取该项目的本地目录
                string serverPat = System.Web.Hosting.HostingEnvironment.MapPath("/");
                //项目目录中指定的某个位置
                string filepath = serverPat + "bin\\" + filename+".txt";
                //判断是否该文件存在,若存在,则删除
                if (File.Exists(filepath))
                {
                    File.Delete(filepath);
                }
                StreamWriter sw = File.AppendText(filepath); //保存到指定路径
                sw.Write(filecontent);
                sw.Flush();
                sw.Close();
           
        }

你可能感兴趣的:(笔记,c#)