File.Move,为什么我得到FileNotFoundException?该文件存在

时间:2010-03-27 07:14:02

标签: .net filenotfoundexception

因为程序正在迭代文件,所以非常奇怪! outfolder和infolder都在H:/我的外部HD使用Windows 7.想法是移动所有只包含扩展db和svn-base文件的文件夹。当我尝试移动文件夹时,我得到一个例外。 VS2010告诉我它无法找到dir中指定的文件夹。这段代码是通过dir迭代的,所以它怎么能找不到它!这很奇怪。

        string []theExt = new string[] { "db", "svn-base" };
        foreach (var dir in Directory.GetDirectories(infolder))
        {
            bool hit = false;
            if (Directory.GetDirectories(dir).Count() > 0)
                continue;
            foreach (var f in Directory.GetFiles(dir))
            {
                var ext = Path.GetExtension(f).Substring(1);
                if(theExt.Contains(ext) == false)
                {
                    hit = true;
                    break;
                }
            }
            if (!hit)
            {
                var dst = outfolder + "\\" + Path.GetFileName(dir);
                File.Move(dir, outfolder); //FileNotFoundException: Could not find file dir.
            }
        }
    }

1 个答案:

答案 0 :(得分:6)

我相信您正在尝试使用需要文件名的File.Move来移动整个目录。

请尝试使用Directory.Move,因为这样可以移动整个文件夹。