script-launcher/src/ScriptFinder.cs

49 lines
1.5 KiB
C#

namespace ScriptLauncher;
internal readonly struct ScriptFinder
{
public IEnumerable<string> Extensions { get; }
public string RootDirectory { get; }
private int Depth { get; }
private readonly EnumerationOptions _options;
public ScriptFinder(IEnumerable<string> 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<FileInfo> GetScriptFilesWithExtension(string extension)
{
try
{
var filenames = Directory.GetFiles(RootDirectory, $"*{extension}", _options);
return filenames.Select(x => new FileInfo(x));
}
catch (UnauthorizedAccessException)
{
return Enumerable.Empty<FileInfo>();
}
}
public FileInfo[] GetScripts() =>
Extensions.Select(GetScriptFilesWithExtension).SelectMany(x => x).ToArray();
public IDictionary<DirectoryInfo, FileInfo[]> GetScriptsByDirectory() =>
Extensions
.Select(GetScriptFilesWithExtension)
.SelectMany(x => x)
.GroupBy(x => x.DirectoryName!)
.OrderBy(x => x.Key)
.ToDictionary(x => new DirectoryInfo(x.Key), x => x.ToArray());
}