快速获取特定路径中的所有文件和目录


67

我正在创建一个备份应用程序,其中c#扫描目录。为了获得目录中的所有文件和子文件,在使用这样的东西之前:

DirectoryInfo di = new DirectoryInfo("A:\\");
var directories= di.GetFiles("*", SearchOption.AllDirectories);

foreach (FileInfo d in directories)
{
       //Add files to a list so that later they can be compared to see if each file
       // needs to be copid or not
}

唯一的问题是,有时无法访问文件,并且出现一些错误。我得到一个错误的例子是:错误

结果,我创建了一个递归方法,该方法将扫描当前目录中的所有文件。如果该目录中有目录,则将通过该目录再次调用该方法。关于此方法的好处是,我可以将文件放在try catch块中,如果没有错误,可以选择将这些文件添加到列表中,如果我有错误,则可以将目录添加到另一个列表中。

try
{
    files = di.GetFiles(searchPattern, SearchOption.TopDirectoryOnly);               
}
catch
{
     //info of this folder was not able to get
     lstFilesErrors.Add(sDir(di));
     return;
}

因此,此方法的效果很好,唯一的问题是,当我扫描大型目录时,它要花费很多时间。我如何加快这个过程?我的实际方法是在需要时使用。

private void startScan(DirectoryInfo di)
{
    //lstFilesErrors is a list of MyFile objects
    // I created that class because I wanted to store more specific information
    // about a file such as its comparePath name and other properties that I need 
    // in order to compare it with another list

    // lstFiles is a list of MyFile objects that store all the files
    // that are contained in path that I want to scan

    FileInfo[] files = null;
    DirectoryInfo[] directories = null;
    string searchPattern = "*.*";

    try
    {
        files = di.GetFiles(searchPattern, SearchOption.TopDirectoryOnly);               
    }
    catch
    {
        //info of this folder was not able to get
        lstFilesErrors.Add(sDir(di));
        return;
    }

    // if there are files in the directory then add those files to the list
    if (files != null)
    {
        foreach (FileInfo f in files)
        {
            lstFiles.Add(sFile(f));
        }
    }


    try
    {
        directories = di.GetDirectories(searchPattern, SearchOption.TopDirectoryOnly);
    }
    catch
    {
        lstFilesErrors.Add(sDir(di));
        return;
    }

    // if that directory has more directories then add them to the list then 
    // execute this function
    if (directories != null)
        foreach (DirectoryInfo d in directories)
        {
            FileInfo[] subFiles = null;
            DirectoryInfo[] subDir = null;

            bool isThereAnError = false;

            try
            {
                subFiles = d.GetFiles();
                subDir = d.GetDirectories();

            }
            catch
            {
                isThereAnError = true;                                                
            }

            if (isThereAnError)
                lstFilesErrors.Add(sDir(d));
            else
            {
                lstFiles.Add(sDir(d));
                startScan(d);
            }


        }

}

如果我尝试使用类似的方法来处理异常,请解决该问题:

DirectoryInfo di = new DirectoryInfo("A:\\");
FileInfo[] directories = null;
            try
            {
                directories = di.GetFiles("*", SearchOption.AllDirectories);

            }
            catch (UnauthorizedAccessException e)
            {
                Console.WriteLine("There was an error with UnauthorizedAccessException");
            }
            catch
            {
                Console.WriteLine("There was antother error");
            }

是的,如果发生异常,那么我没有任何文件。


2
除了捕获所有异常之外,您还应该捕获特定的异常(例如UnauthorisedAccessException),否则编程(例如NullReferenceException)和系统错误(例如OutOfMemoryException)将被掩盖为应用程序错误。
Paul Ruane

这花费的时间将取决于层次结构中的文件数。如果文件很多,将需要很长时间。就是那样子。
Jim Mischel

顺便说一句,我在这里展示了一种更为简单的递归目录列表方法:notifyit.com/guides/content.aspx?g=dotnet&seqNum=159。您可以修改该代码以处理异常并将事件存储在列表中。
Jim Mischel

Answers:


45

这种方法要快得多。仅当在目录中放置大量文件时才能打电话。我的A:\外置硬盘驱动器几乎包含1 TB,因此在处理大量文件时会产生很大的不同。

static void Main(string[] args)
{
    DirectoryInfo di = new DirectoryInfo("A:\\");
    FullDirList(di, "*");
    Console.WriteLine("Done");
    Console.Read();
}

static List<FileInfo> files = new List<FileInfo>();  // List that will hold the files and subfiles in path
static List<DirectoryInfo> folders = new List<DirectoryInfo>(); // List that hold direcotries that cannot be accessed
static void FullDirList(DirectoryInfo dir, string searchPattern)
{
    // Console.WriteLine("Directory {0}", dir.FullName);
    // list the files
    try
    {
        foreach (FileInfo f in dir.GetFiles(searchPattern))
        {
            //Console.WriteLine("File {0}", f.FullName);
            files.Add(f);                    
        }
    }
    catch
    {
        Console.WriteLine("Directory {0}  \n could not be accessed!!!!", dir.FullName);                
        return;  // We alredy got an error trying to access dir so dont try to access it again
    }

    // process each directory
    // If I have been able to see the files in the directory I should also be able 
    // to look at its directories so I dont think I should place this in a try catch block
    foreach (DirectoryInfo d in dir.GetDirectories())
    {
        folders.Add(d);
        FullDirList(d, searchPattern);                    
    }

}

顺便说一句,我感谢您的评论Jim Mischel


谢谢。这种方法比Directory.GetFileSystemEntries快100倍
Nishioka Takeo,2008年


12

.NET文件枚举方法由来已久。问题在于没有枚举大型目录结构的即时方法。即使是这里公认的答案也与GC分配有关。

我能做的最好的事情总结在我的库中,并作为CSharpTest.Net.IO命名空间中的FindFilesource)类公开。此类可以枚举文件和文件夹,而无需进行不必要的GC分配和字符串编组。

用法非常简单,并且RaiseOnAccessDenied属性将跳过用户无权访问的目录和文件:

    private static long SizeOf(string directory)
    {
        var fcounter = new CSharpTest.Net.IO.FindFile(directory, "*", true, true, true);
        fcounter.RaiseOnAccessDenied = false;

        long size = 0, total = 0;
        fcounter.FileFound +=
            (o, e) =>
            {
                if (!e.IsDirectory)
                {
                    Interlocked.Increment(ref total);
                    size += e.Length;
                }
            };

        Stopwatch sw = Stopwatch.StartNew();
        fcounter.Find();
        Console.WriteLine("Enumerated {0:n0} files totaling {1:n0} bytes in {2:n3} seconds.",
                          total, size, sw.Elapsed.TotalSeconds);
        return size;
    }

对于我的本地C:\驱动器,输出以下内容:

在232.876秒内枚举了810,046个文件,总计307,707,792,662字节。

您的行驶里程可能因驱动器速度而异,但这是我发现的枚举托管代码中文件的最快方法。event参数是FindFile.FileFoundEventArgs类型的变异类,因此请确保不要保留对其的引用,因为它的值会针对每个引发的事件而改变。


+1是因为与其他技术相比,速度要快得多。THE ONLY PROBLEM IS THAT IT FINDS LESS FILES THAN THE OTHER ALGORITHMS WHEN USING IT AGAINS THE C DRIVE
Tono Nam

2
您也缺少调用该FIND()方法。我将fcounter.Find()方法放在lambda之后,效果很好。
Tono Nam

1
哦,等等...哈哈,是的,这个示例有问题;)感谢您指出它
csharptest.net 2012年

我需要找到具有多个搜索模式的特定文件。我应该如何添加它们以代替“ ” @ csharptest.net ...我尝试了“ .txt; *。exe”,“ .txt | .exe”。
Pratik Pattanayak,2014年

@gotoVoid只是枚举并自己过滤扩展。这样实际上更快。
csharptest.net 2014年

3

(从您其他问题的其他答案中复制了此文章)

搜索目录中的所有文件时显示进度

快速文件枚举

当然,正如您已经知道的那样,枚举本身有很多方法……但没有一种是瞬时的。您可以尝试使用文件系统的“ USN日志”进行扫描。看一下CodePlex中的这个项目:VB.NET中的MFT扫描仪...它在不到15秒的时间内找到了我的IDE SATA(不是SSD)驱动器中的所有文件,并找到了311000个文件。

您将必须按路径过滤文件,以便仅返回所查找路径内的文件。但这是工作的容易部分!


这似乎需要管理员提升权限,否则传递new DriveInfo("c")会导致ACCESS_DENIED异常。它还仅限于已启用日记功能的NTFS分区。否则,这是一个好的解决方案,因为它肯定比使用常规API快很多。不知道为什么核心框架没有利用它,或者为什么文件系统没有提供任何访问级别都可以访问的只读版本。
Kraang Prime

@SamuelJackson当使用Journal枚举MFT条目时,所有更改都会被列出,我的意思是,甚至包括其他用户,管理员或系统本身所做的更改。一切!这就是为什么所需的访问级别是Backup Operator ...的原因,它允许从文件系统读取任何内容,但不能执行,也不能写入非他/她自己的文件。
Miguel Angelo

2

您可以使用它来获取所有目录和子目录。然后只需循环浏览即可处理文件。

string[] folders = System.IO.Directory.GetDirectories(@"C:\My Sample Path\","*", System.IO.SearchOption.AllDirectories);

foreach(string f in folders)
{
   //call some function to get all files in folder
}

6
看来你不明白的问题
马腹

2

我知道这很旧,但是...另一个选择可能是使用FileSystemWatcher,如下所示:

void SomeMethod()
{
    System.IO.FileSystemWatcher m_Watcher = new System.IO.FileSystemWatcher();
    m_Watcher.Path = path;
    m_Watcher.Filter = "*.*";
    m_Watcher.NotifyFilter = m_Watcher.NotifyFilter = NotifyFilters.LastAccess | NotifyFilters.LastWrite | NotifyFilters.FileName | NotifyFilters.DirectoryName;
    m_Watcher.Created += new FileSystemEventHandler(OnChanged);
    m_Watcher.EnableRaisingEvents = true;
}

private void OnChanged(object sender, FileSystemEventArgs e)
    {
        string path = e.FullPath;

        lock (listLock)
        {
            pathsToUpload.Add(path);
        }
    }

这将使您可以通过非常轻量级的过程来监视目录中文件的更改,然后可以使用该目录存储更改的文件的名称,以便可以在适当的时间对其进行备份。


2

也许对您有帮助。您可以使用“ DirectoryInfo.EnumerateFiles ”方法并根据需要处理UnauthorizedAccessException

using System;
using System.IO;

class Program
{
    static void Main(string[] args)
    {
        DirectoryInfo diTop = new DirectoryInfo(@"d:\");
        try
        {
            foreach (var fi in diTop.EnumerateFiles())
            {
                try
                {
                    // Display each file over 10 MB; 
                    if (fi.Length > 10000000)
                    {
                        Console.WriteLine("{0}\t\t{1}", fi.FullName, fi.Length.ToString("N0"));
                    }
                }
                catch (UnauthorizedAccessException UnAuthTop)
                {
                    Console.WriteLine("{0}", UnAuthTop.Message);
                }
            }

            foreach (var di in diTop.EnumerateDirectories("*"))
            {
                try
                {
                    foreach (var fi in di.EnumerateFiles("*", SearchOption.AllDirectories))
                    {
                        try
                        {
                            // Display each file over 10 MB; 
                            if (fi.Length > 10000000)
                            {
                                Console.WriteLine("{0}\t\t{1}",  fi.FullName, fi.Length.ToString("N0"));
                            }
                        }
                        catch (UnauthorizedAccessException UnAuthFile)
                        {
                            Console.WriteLine("UnAuthFile: {0}", UnAuthFile.Message);
                        }
                    }
                }
                catch (UnauthorizedAccessException UnAuthSubDir)
                {
                    Console.WriteLine("UnAuthSubDir: {0}", UnAuthSubDir.Message);
                }
            }
        }
        catch (DirectoryNotFoundException DirNotFound)
        {
            Console.WriteLine("{0}", DirNotFound.Message);
        }
        catch (UnauthorizedAccessException UnAuthDir)
        {
            Console.WriteLine("UnAuthDir: {0}", UnAuthDir.Message);
        }
        catch (PathTooLongException LongPath)
        {
            Console.WriteLine("{0}", LongPath.Message);
        }
    }
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.