Distinguish IO extensions and helpers

This commit is contained in:
Matt Nadareski
2020-12-10 22:16:53 -08:00
parent 7141904fc8
commit 58b3cda921
47 changed files with 325 additions and 353 deletions

View File

@@ -71,7 +71,7 @@ namespace SabreTools.IO
public string GetOutputPath(string outDir, bool inplace)
{
// First, we need to ensure the output directory
outDir = DirectoryExtensions.Ensure(outDir);
outDir = outDir.Ensure();
// Check if we have a split path or not
bool splitpath = !string.IsNullOrWhiteSpace(ParentPath);