Copy and delete txt files, copy and delete txt files

Source: Internet
Author: User

Copy and delete txt files, copy and delete txt files

The Code is as follows:

// Copy an object

Private void btnCopy_Click (object sender, EventArgs e)
{
Try
{
If (! File.Exists(this.txt FileName. Text ))
{
MessageBox. Show ("the file does not exist ");
}
Else
{
File.Copy(this.txt FileName. Text, this.txt CopyName. Text );
MessageBox. Show ("copied ");
}
}
Catch (Exception ex)
{
MessageBox. Show (ex. Message );
}
}


// Delete an object

Private void btnDel_Click (object sender, EventArgs e)
{
Try
{
If (! File.Exists(this.txt DelName. Text ))
{
MessageBox. Show ("the file does not exist! ");
}
Else
{
File.Delete(this.txt DelName. Text );
MessageBox. Show ("deleted successfully! ");
}
}
Catch (Exception ex)
{
MessageBox. Show (ex. Message );
}
}

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.