mirror of
https://github.com/m-lamonaca/script-launcher.git
synced 2025-04-06 10:26:28 +00:00
53 lines
1.6 KiB
C#
53 lines
1.6 KiB
C#
|
using Spectre.Console;
|
||
|
|
||
|
readonly struct ScriptFinder
|
||
|
{
|
||
|
static readonly string[] DefaultExtensions = new[] { ".ps1", ".*sh", ".bat", ".cmd" };
|
||
|
public string[] Extensions { get; }
|
||
|
public string RootDirectory { get; }
|
||
|
public int Depth { get; }
|
||
|
private readonly EnumerationOptions _options;
|
||
|
|
||
|
public ScriptFinder(string? extensions, string directory, int depth)
|
||
|
{
|
||
|
Extensions = extensions?.Split(new[] { ',', ' ' }, StringSplitOptions.RemoveEmptyEntries)
|
||
|
.ToHashSet()
|
||
|
.Select(x => $".{x.TrimStart('.')}")
|
||
|
.ToArray() ?? DefaultExtensions;
|
||
|
|
||
|
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());
|
||
|
}
|