如何在服务器或内存上创建文本文件?

时间:2010-08-04 14:25:31

标签: c# asp.net

如何创建文本文件并将字符串的内容写入其中?我打算稍后引用该文本文件。它可以在服务器(根文件夹)或我可以引用它的任何地方。下面是字符串内容

 foreach (string s in strValuesToSearch)
            {

                if (result.Contains(s))

                    result = result.Replace(s, stringToReplace);

2 个答案:

答案 0 :(得分:2)

您可以使用WriteAllText方法:

string result = "foo bar";
File.WriteAllText(@"c:\foo.txt", result);

答案 1 :(得分:0)

只要您拥有在服务器上书写的适当权限,您就可以利用System.IO.File类的方法

System.IO.File.WriteAllText