File Directory ASP.Net

<%@ Page Language="C#" %>

void CopyFile_Click(object sender, System.EventArgs e)
{
  try
  {
    string sourceFile = Server.MapPath("Data.txt");
    string destinationFile = Server.MapPath("Datacopy.txt");
    System.IO.File.Copy(sourceFile, destinationFile);
  }
  catch (Exception ex)
  {
    MessageLabel.Text = ex.Message;
  }
}
void MoveFile_Click(object sender, System.EventArgs e)
{
  try
  {
    string sourceFile = Server.MapPath("Data.txt");
    string destinationFile = Server.MapPath("Datamove.txt");
    System.IO.File.Move(sourceFile, destinationFile);
  }
  catch (Exception ex)
  {
    MessageLabel.Text = ex.Message;
  }
}


  
    Copying or Moving a File
  
  
    
      Copy "Data.txt" to "Datacopy.txt"
      
      
      Move "Data.txt" to "Datamove.txt"