我在我的宠物项目中遇到了问题。完全我想计算某个目录中的文件,通过一些选项(长度)过滤它们。当在我可以访问的地方“读取”文件或目录时,它对我很有用。否则它会使我的循环崩溃。 例如,我使用 msdn https://msdn.microsoft.com/en-us/library/dd460695(v=vs.110).aspx处理 AggregateException (这个例子效果很好)
第一次调用无法访问的文件时出现异常。你能推荐实现我的要求的最佳方法吗?下面你可以看到我的代码。
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();
}
}
}
对不起,如果重复这个话题