Fix: refusal of creation of non-existent directory tree on plotting

Fixed https://gitlab.com/kicad/code/kicad/-/issues/6394
wxWidgets uses wxFileName::Mkdir to create a directory tree like `mkdir
-p`.
This commit is contained in:
RigoLigoRLC 2020-11-26 01:44:55 +08:00 committed by jean-pierre charras
parent 0bbb7bdb0c
commit ef75ce9035
1 changed files with 3 additions and 1 deletions

View File

@ -307,7 +307,9 @@ bool EnsureFileDirectoryExists( wxFileName* aTargetFullFileName,
if( !wxFileName::DirExists( outputPath ) )
{
if( wxMkdir( outputPath ) )
// Make every directory provided when the provided path doesn't exist
// Fixes GitLab Issue #6394
if( wxFileName::Mkdir( outputPath, wxS_DIR_DEFAULT, wxPATH_MKDIR_FULL ) )
{
if( aReporter )
{