C# File.Copy 方法 (String, String, Boolean)
将现有文件复制到新文件,允许改写同名的文件。
命名空间:System.IO
private void button1_Click(object sender, EventArgs e)
{
try
{
if (File.Exists("c:\\DSC.JPG"))
{
// 实现文件复制
File.Copy(@"c:\\DSC.JPG", @"c:\\a.JPG", true);
MessageBox.Show("成功实现文件复制", "文件复制", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
catch
{
}
}