mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#3483 SetExportFolder : Use mkpath instead of mkdir
Allow users to create folders with more than one level
This commit is contained in:
parent
e1e515b659
commit
d489fe1034
@ -48,7 +48,7 @@ void RicfSetExportFolder::execute()
|
|||||||
|
|
||||||
if (!dir.exists(m_path))
|
if (!dir.exists(m_path))
|
||||||
{
|
{
|
||||||
dir.mkdir(m_path);
|
dir.mkpath(m_path);
|
||||||
|
|
||||||
if (!dir.exists(m_path))
|
if (!dir.exists(m_path))
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user