私のペットプロジェクトで問題が発生しました。完全に、いくつかのオプション(長さ)でそれらをフィルタリングするいくつかのディレクトリ内のファイルを数えたいです。アクセスできる場所でファイルまたはディレクトリの「読み取り」が発生した場合、それは私にとってはうまく機能します。 AggregateException 処理の例として、msdn https://msdn.microsoft.com/en-us/library/dd460695(v=vs.110).aspxを使用しました(この例はうまくいきます)
到達不能ファイルの最初の呼び出しで例外が発生しました。私の要件を実装するための最良の方法をお勧めできますか? 以下に私のコードを示します。
using System;
using System.Collections.Concurrent;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
namespace app
{
class Program
{
public static int CountOfGetAccessFiles { get; set; }
public static int NotCountOfGetAccessFiles { get; set; }
public static void ToDo()
{
//get files
DirectoryInfo dir = new DirectoryInfo(@"E:\");
var str = dir.EnumerateFiles("*.*", SearchOption.AllDirectories);
var quantFiles = str.Select(x => x);
//need to save exceptions
var exceptions = new ConcurrentQueue<Exception>();
try
{
Parallel.ForEach(quantFiles, item =>
{
CountOfGetAccessFiles++;
Console.WriteLine(CountOfGetAccessFiles);
});
}
catch (Exception e)
{
NotCountOfGetAccessFiles++;
exceptions.Enqueue(e);
}
if (exceptions.Count > 0) throw new AggregateException(exceptions);
}
static void Main(string[] args)
{
try
{
ToDo();
}
catch (AggregateException ae)
{
//This is where you can choose which exceptions to handle.
foreach (var ex in ae.InnerExceptions)
{
if (ex is ArgumentException)
Console.WriteLine(ex.Message);
//else
// throw ex;
}
}
Console.WriteLine("Count {0}, aggregate {1}", CountOfGetAccessFiles, NotCountOfGetAccessFiles);
Console.ReadLine();
}
}
}
このトピックを繰り返したらごめんなさい