AsposeVisualStudioPluginPdf.Core.GitHelper.checkAndCreateFolder C# (CSharp) Метод

checkAndCreateFolder() приватный статический Метод

private static checkAndCreateFolder ( String folderPath ) : void
folderPath String
Результат void
        private static void checkAndCreateFolder(String folderPath)
        {
            if (!Directory.Exists(folderPath))
                Directory.CreateDirectory(folderPath);
        }