AnujBank.PaymentInstructionService.CreateOutPutDirectoryIfDoesNotExist C# (CSharp) 메소드

CreateOutPutDirectoryIfDoesNotExist() 개인적인 메소드

private CreateOutPutDirectoryIfDoesNotExist ( ) : void
리턴 void
        private void CreateOutPutDirectoryIfDoesNotExist()
        {
            if(!Directory.Exists(OutputPath))
             {
                Directory.CreateDirectory(OutputPath);
             }
        }