我被要求制作一个文件复印机,通过添加" _Copy"来更改文件名,但会保留文件类型。
例如:
c:\...mike.jpg
为:
c:\...mike_Copy.jpg
这是我的代码:
private void btnChseFile_Click(object sender, EventArgs e)
{
prgrssBar.Minimum = 0;
OpenFileDialog ofd = new OpenFileDialog();
ofd.Title = "Which file do you want to copy ?";
DialogResult fc = ofd.ShowDialog();
tbSource.Text = ofd.FileName;
tbDestination.Text = tbSource.Text + "_Copy";
}
答案 0 :(得分:0)
您将_Copy
附加到文件名的末尾而不是扩展名之前。您需要在扩展名之前添加它:
string destFileName = $"{Path.GetFileNameWithoutExtension(ofd.FileName)}_Copy{Path.GetExtension(ofd.FileName)}";
或没有C#6:
string destFileName = String.Format("{0}_Copy{1}",
Path.GetFileNameWithoutExtension(ofd.FileName),
Path.GetExtension(ofd.FileName));
然后获取文件的完整路径:
string fullPath = Path.Combine(Path.GetDirectoryName(ofd.FileName, destFileName));
然后执行实际的副本只需使用:
File.Copy(ofd.FileName, fullPath);
答案 1 :(得分:0)
您可以使用课程System.IO.FileInfo
和System.IO.Path
来完成您正在尝试的内容:
OpenFileDialog od = new OpenFileDialog();
if(od.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
System.IO.FileInfo fi = new System.IO.FileInfo(od.FileName);
string oldFile = fi.FullName;
string newFile = oldFile.Replace(System.IO.Path.GetFileNameWithoutExtension(oldFile),
string.Format("{0}_Copy",
System.IO.Path.GetFileNameWithoutExtension(oldFile)));
MessageBox.Show(newFile);
}
然后您可以调用以下内容来执行复制:
System.IO.File.Copy(oldFile, newFile);