将文件复制到Windows窗体应用程序中的另一个文件夹

时间:2012-02-29 12:00:01

标签: winforms copy-paste

我想使用Windows窗体应用程序中的上下文菜单将一些文件从一个文件夹复制到我的PC的另一个文件夹。我知道如何添加上下文菜单,我需要知道执行复制和放大的技巧。糊。我需要使用什么类型的控制?

示例代码非常有用。

1 个答案:

答案 0 :(得分:3)

string dirA = @"C:\";
string dirB = @"D:\";

string[] files = System.IO.Directory.GetFiles(dirA);

foreach (string s in files) {
    if (System.IO.Path.GetExtension(s).equals("bak")) {
        System.IO.File.Copy(s, System.IO.Path.Combine(targetPath, fileName), true);
    }
}