在.net中如何生成一个txt文本文档
发布网友
发布时间:2023-12-22 12:39
我来回答
共2个回答
热心网友
时间:2024-11-18 20:47
public static void WriteToFile(string name, string content, bool isCover)
{
FileStream fs = null;
try
{
if (!isCover && File.Exists(name))
{
fs = new FileStream(name, FileMode.Append, FileAccess.Write);
StreamWriter sw = new StreamWriter(fs, Encoding.UTF8);
sw.WriteLine(content);
sw.Flush();
sw.Close();
}
else
{
File.WriteAllText(name, content, Encoding.UTF8);
}
}
finally
{
if (fs != null)
{
fs.Close();
}
}
}追问参数是什么意思啊,本人菜鸟望大师指点
追答文件名,文件内容,如有重复是否替换文件
热心网友
时间:2024-11-18 20:47
文件—另存为—txt追问哥我说的是用代码来编写.net的