QDir::mkpath
-
@GrahamL said:
QDir::mkpath
this is the implantation
So My best guess is sadly no since the actual mkdir
lives in QDirPrivate.bool QDir::mkpath(const QString &dirPath) const { const QDirPrivate* d = d_ptr.constData(); if (dirPath.isEmpty()) { qWarning("QDir::mkpath: Empty or null file name(s)"); return false; } QString fn = filePath(dirPath); if (d->fileEngine.isNull()) return QFileSystemEngine::createDirectory(QFileSystemEntry(fn), true); return d->fileEngine->mkdir(fn, true); }