namespace ScriptLauncher; internal readonly struct ScriptFinder { public IEnumerable Extensions { get; } public string RootDirectory { get; } private int Depth { get; } private readonly EnumerationOptions _options; public ScriptFinder(IEnumerable extensions, string directory, int depth) { Extensions = extensions.ToHashSet().Select(x => $".{x.TrimStart('.')}"); Depth = depth; RootDirectory = directory; _options = new EnumerationOptions { IgnoreInaccessible = true, RecurseSubdirectories = Depth > 0, MaxRecursionDepth = Depth, }; } private IEnumerable GetScriptFilesWithExtension(string extension) { try { var filenames = Directory.GetFiles(RootDirectory, $"*{extension}", _options); return filenames.Select(x => new FileInfo(x)); } catch (UnauthorizedAccessException) { return Enumerable.Empty(); } } public FileInfo[] GetScripts() => Extensions.Select(GetScriptFilesWithExtension).SelectMany(x => x).ToArray(); public IDictionary GetScriptsByDirectory() => Extensions .Select(GetScriptFilesWithExtension) .SelectMany(x => x) .GroupBy(x => x.DirectoryName!) .OrderBy(x => x.Key) .ToDictionary(x => new DirectoryInfo(x.Key), x => x.ToArray()); }