1

我想探索目录,选择一个文件夹,然后将现有文件夹的内容复制到这个新目录。

我正在使用此代码,但它不起作用我要复制它的文件夹是:C:\Project

            DialogResult result = fd.ShowDialog();
            if (result == System.Windows.Forms.DialogResult.OK)
            {
                MessageBox.Show(fd.SelectedPath.ToString());
            }

            var _SelectedPath = fd.SelectedPath.ToString();
            string sourceFile = @"C:\Project";
            string destinationFile = _SelectedPath;
            string fileName;

            //System.IO.Directory.Move(sourceFile, @"_SelectedPath");

            if (!System.IO.Directory.Exists(@"_SelectedPath"))
            {
                System.IO.Directory.CreateDirectory(@"_SelectedPath");
            }
            if (System.IO.Directory.Exists(sourceFile))
            {
                string[] files = System.IO.Directory.GetFiles(sourceFile);

                // Copy the files and overwrite destination files if they already exist. 
                foreach (string s in files)
                {
                    // Use static Path methods to extract only the file name from the path.
                    fileName = System.IO.Path.GetFileName(s);
                    _SelectedPath = System.IO.Path.Combine(@"_SelectedPath", fileName);
                    System.IO.File.Copy(s, @"_SelectedPath", true);
                }
            }
4

2 回答 2

2

您可以通过添加一个引用来简化事情,Microsoft.VisualBasic因为它在单个函数中处理目录复制,如果需要,我还可以显示 Windows 文件复制进度对话框。

例子:

DialogResult result = fd.ShowDialog();
if (result == System.Windows.Forms.DialogResult.OK)
{
    MessageBox.Show(fd.SelectedPath.ToString());
}

string _SelectedPath = fd.SelectedPath.ToString();
string destinationPath = @"C:\Project";

Microsoft.VisualBasic.FileIO.FileSystem.CopyDirectory(_SelectedPath, destinationPath);
于 2013-06-15T00:58:52.507 回答
0

用以下代码替换你的 for 循环

// Copy the files and overwrite destination files if they already exist. 
                foreach (string s in files)
                {
                    // Use static Path methods to extract only the file name from the path.
                    fileName = System.IO.Path.GetFileName(s);
                    string _currFileName = System.IO.Path.Combine(_SelectedPath, fileName);
                    System.IO.File.Copy(s, _currFileName, true);
                }

在您的代码中,您每次都将文件名附加到相同的 _SelectedPath 中。考虑在源目录 (C:\Test) 中是否有 fileone.txt 和 filetwo.txt。当您第一次进入循环时, Filename 将为C:\Test\fileone.txt。在下一次迭代中,文件名将是C:\Test\fileone.txt\filetwo.txt,这会给出错误 - 找不到文件。上面的代码解决了这个问题

于 2013-06-15T05:19:45.207 回答