0
点赞
收藏
分享

微信扫一扫

c#文件操作

demo1:

/// <summary>
/// 将字符串写入到txt文件
/// </summary>
/// <param name="filepath"></param>
/// <param name="contentStr"></param>
public void WriteTxt(string filepath,string contentStr) {
if (!File.Exists(filepath))
{
logger.Info("文件不存在");
File.CreateText(filepath);
}

using (StreamWriter sw = new StreamWriter(filepath))
{
sw.WriteLine(contentStr);
}
}


public string ReadTxt(string filepath)
{
StringBuilder sb = new StringBuilder(1024);
string line;
using (StreamReader sr = new StreamReader(filepath))
{
while ((line = sr.ReadLine()) != null)
{
sb.AppendLine(line);
}
}
return




举报

相关推荐

0 条评论