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);
        }