.net写本地文件的一个方法

Posted 御行所

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.net写本地文件的一个方法相关的知识,希望对你有一定的参考价值。

整理代码,.net在本地写html文件的一个方法,代码如下

 1 public static void WriteFile(string FilePath, string FileInfo, string Encode = "GB2312")
 2     {
 3         try
 4         {
 5             if (System.IO.File.Exists(FilePath)) System.IO.File.Delete(FilePath);
 6             System.IO.File.WriteAllText(FilePath, FileInfo, Encoding.GetEncoding(Encode));
 7         }
 8         catch (Exception)
 9         {
10         }
11     }

调用方法如下:

var strFileCn = File.ReadFile(MapPath("order_model.html"), "utf-8");//构建html文件内容
strFileCn = strFileCn.Replace("#orderid#", orders.orderid);
strFileCn = strFileCn.Replace("#username#", orders.username);
var strRocFileName = "/ROC/" + orders.orderid + ".htm";//文件地址
strRocFileName = Server.MapPath(strRocFileName);

WriteFile(strRocFileName, strFileCn, "utf-8");

以上是关于.net写本地文件的一个方法的主要内容,如果未能解决你的问题,请参考以下文章

VS Code中自定义Emmet代码片段

将本地项目文件托管到github的方法-Windows10

Oracle 数据库 - 使用UEStudio修改dmp文件版本号,解决imp命令恢复的数据库与dmp本地文件版本号不匹配导致的导入失败问题,“ORACLE error 12547”问题处理(代码片段

AJAX相关JS代码片段和部分浏览器模型

Android课程---Android Studio使用小技巧:提取方法代码片段

本地的html怎么直接通过路径就读取本地文件