• 1
  • 2
  • 3
  • 4
  • 5
asp.net空间 首 页  »  帮助中心  »  虚拟主机  »  asp.net空间
介绍.NET文件操作(一)
发布日期:2015-10-14 9:10:55

  介绍.NET文件操作(一)

  云虚拟主机对NET文件操作共分为四部分,分别为:文件的建立,文件的删除,文件的读取和文件的写入。这里先为您介绍前两部分,文件的建立和删除。

       1.文件的建立源代码:

  private void Button1_Click(object sender, System.EventArgs e)

  {

  //string wenjian;

  //wenjian = filename.Text;

  if (this.filename.Text.ToString().Trim()=="")

  {

  this.body.Text = "********";

  }

  else

  {

  try

  {

  string thisfilename=filename.Text.ToString();

  FileStream fsMyfile = new FileStream(thisfilename,FileMode.Create,FileAccess.ReadWrite);

  fsMyfile.Close();

  this.body.Text = "********";

  }

  catch

  {

  //Console.WriteLine("{0} Second exception caught.", e);

  this.body.Text = "********";

  }

  }

  }

  2.文件的删除源代码:

  private void Button4_Click(object sender, System.EventArgs e)

  {

  if (this.filename.Text.ToString().Trim()=="")

  {

  this.body.Text = "********";

  }

  else

  {

  try

  {

  string thisfilename=filename.Text.ToString();

  File.Delete(thisfilename);

  this.body.Text = "********";

  }

  catch

  {

  //Console.WriteLine("{0} Second exception caught.", e);

  this.body.Text = "********";

  }

  }

  }