Allow wildcarded paths for inputs

This commit is contained in:
Matt Nadareski
2020-08-08 21:53:34 -07:00
parent ff8aebd3f0
commit 98a8c9cbfd
4 changed files with 48 additions and 23 deletions

View File

@@ -55,7 +55,7 @@ namespace SabreTools.Library.IO
public static bool HasValidArchiveExtension(string path)
{
// Get the extension from the path, if possible
string ext = PathExtensions.GetNormalizedExtension(path);
string ext = GetNormalizedExtension(path);
// Check against the list of known archive extensions
switch (ext)