//原文件路径
string filepath = PathTextBox.Text;
//要保存文件名
string name = PathTextBox.Tag.ToString();
//要保存到的路径
string newPath = NewPathTextBox.Text + "\\" + name;
File.Copy(filepath, newPath, true);
时间: 2024-10-11 03:34:37
//原文件路径
string filepath = PathTextBox.Text;
//要保存文件名
string name = PathTextBox.Tag.ToString();
//要保存到的路径
string newPath = NewPathTextBox.Text + "\\" + name;
File.Copy(filepath, newPath, true);