NAPS2.WinForms.DialogHelper.GetDir C# (CSharp) Method

GetDir() private method

private GetDir ( string defaultPath ) : string
defaultPath string
return string
        private string GetDir(string defaultPath)
        {
            return Path.IsPathRooted(defaultPath)
                ? Path.GetDirectoryName(defaultPath)
                : "";
        }