AsposeVisualStudioPluginPdf.Core.GitHelper.checkAndCreateFolder C# (CSharp) Méthode

checkAndCreateFolder() private static méthode

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