首页 > 编程 > C# > 正文

C#读写文本文件的方法

2023-05-15 12:29:37
字体:
来源:转载
供稿:网友

很多情况下,我们可能在程序中操作文件来读取或存放一些内容,下面给出具体的例子。

using System;
using System.IO;
namespace ConsoleApplication2
{
/// <summary>
/// Summary description for Class2.
/// </summary>
public class Class1
{
private const string FILE_NAME="MyFile.txt";
public static void Main(String[] args)
{
StreamWriter sr;
string report;
if(File.Exists(FILE_NAME)) //如果文件存在,则创建File.AppendText对象
{
sr=File.AppendText(FILE_NAME);
report="appended";
}
else //如果文件不存在,则创建File.CreateText对象
{
sr=File.CreateText(FILE_NAME);
report="created";
}

sr.WriteLine("This is my first file.");
Console.WriteLine("{0} {1}",FILE_NAME,report);
sr.Close();
}
}
}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表