//FileMode的六种枚举
//枚举值 说明
//Append 打开现有文件并定位至文件结尾,或创建新文件
//Create 创建新文件,如存在,它将被改写
//CreateNew 创建新文件,如存在,将引发异常
//Open 打开现有文件
//OpenOrCreat 如文件存在,打开;如不存在,创建新文件
//Trrncate 打开现有文件,文件一旦被打开,将被截断为0字节大小
using System.IO //引入命名空间
string path = @"C: \Users\80507\Desktop\51zxw.txt";
try
{
FileStream txtFile = File.Open(path, FileMode.Append);
byte[] byteWrite = {(byte)'5',(byte)'1',(byte)'z', (byte)'x', (byte)'w', (byte)'.', (byte)'n', (byte)'e', (byte)'t' };
txtFile.Write(byteWrite, 0, byteWrite.Length);
txtFile.Close();
Console.WriteLine("打开成功!");
}
catch (Exception ex)
{
Console.WriteLine("打开失败,原因:"+ex.ToString());
}
Console.ReadLine();