AnujBank.PaymentInstructionService.CreateOutPutDirectoryIfDoesNotExist C# (CSharp) Method

CreateOutPutDirectoryIfDoesNotExist() private method

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