20

Directory.GetFiles() または同様のメソッドですべての結果をループすることなく、特定の種類のファイルの数を見つける方法はありますか? 私はこのようなものを探しています:

int ComponentCount = MagicFindFileCount(@"c:\windows\system32", "*.dll");

Directory.GetFiles を呼び出す再帰関数を作成できることはわかっていますが、すべての反復なしでこれを実行できれば、はるかにクリーンになります。

編集:自分自身を再帰して反復せずにこれを行うことができない場合、それを行う最善の方法は何ですか?

4

7 に答える 7

37

Directory.GetFiles() のDirectory.GetFiles(path, searchPattern, SearchOption)オーバーロードを使用する必要があります。

Path はパスを指定し、searchPattern はワイルドカード (*、*.format など) を指定し、SearchOption はサブディレクトリを含めるオプションを提供します。

この検索の戻り配列の Length プロパティは、特定の検索パターンとオプションに適切なファイル数を提供します。

string[] files = directory.GetFiles(@"c:\windows\system32", "*.dll", SearchOption.AllDirectories);

return files.Length;

編集:別の方法として、 Directory.EnumerateFiles メソッドを使用することもできます

return Directory.EnumerateFiles(@"c:\windows\system32", "*.dll", SearchOption.AllDirectories).Count();
于 2008-08-26T08:53:42.380 に答える
7

GetFiles のこのオーバーロードを使用できます。

Directory.GetFiles メソッド (文字列、文字列、SearchOption )

および SearchOption のこのメンバー:

AllDirectories - 現在のディレクトリとすべてのサブディレクトリを検索操作に含めます。このオプションには、マウントされたドライブやシンボリック リンクなどの再解析ポイントが検索に含まれます。

GetFiles は文字列の配列を返すため、見つかったファイルの数である長さを取得できます。

于 2008-08-26T08:53:50.867 に答える
6

より最適化されたバージョンを探していました。見つからなかったので、コーディングしてここで共有することにしました。

    public static int GetFileCount(string path, string searchPattern, SearchOption searchOption)
    {
        var fileCount = 0;
        var fileIter = Directory.EnumerateFiles(path, searchPattern, searchOption);
        foreach (var file in fileIter)
            fileCount++;
        return fileCount;
    }

GetFiles/GetDirectories を使用するすべてのソリューションは、これらのオブジェクトをすべて作成する必要があるため、少し遅くなります。列挙を使用すると、一時オブジェクト (FileInfo/DirectoryInfo) は作成されません。

詳細については、備考http://msdn.microsoft.com/en-us/library/dd383571.aspxを参照してください。

于 2011-03-23T18:58:49.610 に答える
1

I have an app which generates counts of the directories and files in a parent directory. Some of the directories contain thousands of sub directories with thousands of files in each. To do this whilst maintaining a responsive ui I do the following ( sending the path to ADirectoryPathWasSelected method):

public class DirectoryFileCounter
{
    int mDirectoriesToRead = 0;

    // Pass this method the parent directory path
    public void ADirectoryPathWasSelected(string path)
    {
        // create a task to do this in the background for responsive ui
        // state is the path
        Task.Factory.StartNew((state) =>
        {
            try
            {
                // Get the first layer of sub directories
                this.AddCountFilesAndFolders(state.ToString())


             }
             catch // Add Handlers for exceptions
             {}
        }, path));
    }

    // This method is called recursively
    private void AddCountFilesAndFolders(string path)
    {
        try
        {
            // Only doing the top directory to prevent an exception from stopping the entire recursion
            var directories = Directory.EnumerateDirectories(path, "*.*", SearchOption.TopDirectoryOnly);

            // calling class is tracking the count of directories
            this.mDirectoriesToRead += directories.Count();

            // get the child directories
            // this uses an extension method to the IEnumerable<V> interface,
           // which will run a function on an object. In this case 'd' is the 
           // collection of directories
            directories.ActionOnEnumerable(d => AddCountFilesAndFolders(d));
        }
        catch // Add Handlers for exceptions
        {
        }
        try
        {
            // count the files in the directory
            this.mFilesToRead += Directory.EnumerateFiles(path).Count();
        }
        catch// Add Handlers for exceptions
        { }
    }
}
// Extension class
public static class Extensions
{ 
    // this runs the supplied method on each object in the supplied enumerable
    public static void ActionOnEnumerable<V>(this IEnumerable<V> nodes,Action<V> doit)
    {

        foreach (var node in nodes)
        {   
            doit(node);
        }
    }
}
于 2012-04-17T15:16:13.637 に答える
1

再帰を使用すると、MagicFindFileCount は次のようになります。

private int MagicFindFileCount( string strDirectory, string strFilter ) {
     int nFiles = Directory.GetFiles( strDirectory, strFilter ).Length;

     foreach( String dir in Directory.GetDirectories( strDirectory ) ) {
        nFiles += GetNumberOfFiles(dir, strFilter);
     }

     return nFiles;
  }

ジョンの解決策はより良いものかもしれませんが.

于 2008-08-26T08:58:03.803 に答える
0

誰かが反復部分を実行する必要があります。

私の知る限り、.NETにはそのようなメソッドはまだ存在しないので、誰かがあなたでなければならないと思います。

于 2008-08-26T08:44:28.627 に答える