#3483 SetExportFolder : Use mkpath instead of mkdir

Allow users to create folders with more than one level
This commit is contained in:
Magne Sjaastad 2018-10-11 07:42:11 +02:00
parent e1e515b659
commit d489fe1034

View File

@ -48,7 +48,7 @@ void RicfSetExportFolder::execute()
if (!dir.exists(m_path))
{
dir.mkdir(m_path);
dir.mkpath(m_path);
if (!dir.exists(m_path))
{