QDir mkdir with absolutepath
You can do this:
QDir dir(path);
if (!dir.exists()){
dir.mkdir(".");
}
Instead of using dir.mkdir()
, try to use QDir::mkpath
;
i.e. as dir.mkpath(path);
You can do this:
QDir dir(path);
if (!dir.exists()){
dir.mkdir(".");
}
Instead of using dir.mkdir()
, try to use QDir::mkpath
;
i.e. as dir.mkpath(path);