AsposeVisualStudioPluginPdf.Core.GitHelper.checkAndCreateFolder C# (CSharp) Method

checkAndCreateFolder() private static method

private static checkAndCreateFolder ( String folderPath ) : void
folderPath String
return void
        private static void checkAndCreateFolder(String folderPath)
        {
            if (!Directory.Exists(folderPath))
                Directory.CreateDirectory(folderPath);
        }