32

伙计们,我正在尝试将所有以 _DONE 结尾的文件移动到另一个文件夹中。

我试过了

//take all files of main folder to folder model_RCCMrecTransfered 
string rootFolderPath = @"F:/model_RCCMREC/";
string destinationPath = @"F:/model_RCCMrecTransfered/";
string filesToDelete = @"*_DONE.wav";   // Only delete WAV files ending by "_DONE" in their filenames
string[] fileList = System.IO.Directory.GetFiles(rootFolderPath, filesToDelete);
foreach (string file in fileList)
{
    string fileToMove = rootFolderPath + file;
    string moveTo = destinationPath + file;
    //moving file
    File.Move(fileToMove, moveTo);

但是在执行这些代码时,我收到一条错误消息。

不支持给定路径的格式。

我哪里做错了 ?

4

4 回答 4

30

您的斜线方向错误。在 Windows 上,您应该使用反斜杠。例如

string rootFolderPath = @"F:\model_RCCMREC\";
string destinationPath = @"F:\model_RCCMrecTransfered\";
于 2013-10-31T06:06:44.570 回答
21

我是这样做的:

if (Directory.Exists(directoryPath))
{
    foreach (var file in new DirectoryInfo(directoryPath).GetFiles())
    {
        file.MoveTo($@"{newDirectoryPath}\{file.Name}");
    }
}

file 是 FileInfo 类的一种。它已经有一个名为 MoveTo() 的方法,它采用目标路径。

于 2018-02-25T11:58:08.340 回答
9

从返回的文件名数组System.IO.Directory.GetFiles()包括它们的完整路径。(请参阅http://msdn.microsoft.com/en-us/library/07wt70x2.aspx)这意味着将源目录和目标目录附加到file值不会是您所期望的。你最终会得到像F:\model_RCCMREC\F:\model_RCCMREC\something_DONE.wavin这样的值fileToMove。如果您在该File.Move()行设置断点,您可以查看您传递的值,这可以帮助调试这样的情况。

简而言之,您需要确定rootFolderPath每个文件的相对路径,以确定正确的目标路径。查看System.IO.Path该类 ( http://msdn.microsoft.com/en-us/library/system.io.path.aspx ) 以了解有帮助的方法。(特别是,您应该考虑Path.Combine()而不是+构建路径。)

于 2013-10-31T06:17:39.573 回答
0

请尝试以下功能。这工作正常。

功能:

public static void DirectoryCopy(string strSource, string Copy_dest)
    {
        DirectoryInfo dirInfo = new DirectoryInfo(strSource);

        DirectoryInfo[] directories = dirInfo.GetDirectories();

        FileInfo[] files = dirInfo.GetFiles();

        foreach (DirectoryInfo tempdir in directories)
        {
            Console.WriteLine(strSource + "/" +tempdir);

            Directory.CreateDirectory(Copy_dest + "/" + tempdir.Name);// creating the Directory   

            var ext = System.IO.Path.GetExtension(tempdir.Name);

            if (System.IO.Path.HasExtension(ext))
            {
                foreach (FileInfo tempfile in files)
                {
                    tempfile.CopyTo(Path.Combine(strSource + "/" + tempfile.Name, Copy_dest + "/" + tempfile.Name));

                }
            }
            DirectoryCopy(strSource + "/" + tempdir.Name, Copy_dest + "/" + tempdir.Name);

        }

        FileInfo[] files1 = dirInfo.GetFiles();

        foreach (FileInfo tempfile in files1)
        {
            tempfile.CopyTo(Path.Combine(Copy_dest, tempfile.Name));

        }
}
于 2017-01-10T14:23:23.560 回答