基于c#下使用asp.net将内容写入txt文件

using System;
using System.Collections.Generic;
using System.IO;//使用FileStream时需要引入
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string path = @"G:\Users\Administrator\Documents\Visual Studio 2015\WebSites\WebSite15\test.txt";//首先将文件位置赋值给 path
FileStream txtfile = File.Open(path,FileMode.Append);//选择一个打开文件的方式,FileMode.后面跟什么方式
byte[] bytewrite = {(byte) 'n' };//以byte方式建立一个数组
txtfile.Write(bytewrite,0,bytewrite.Length);//将指定数组写入txtfile文件中,bytewrite指使用哪个数组写入文件,0是从哪个位置开始写入,bytewrite.Length指的是写入的长度为多少
txtfile.Close();//关闭文件
}
}
关于FileMode 的几种打开方式

基于c#下使用asp.net将内容写入txt文件_第1张图片
Paste_Image.png

你可能感兴趣的:(基于c#下使用asp.net将内容写入txt文件)