Explorar o código

Add recursive folders creation function in FileSystem

Ivan Arkhipov %!s(int64=5) %!d(string=hai) anos
pai
achega
247e7bb06b
Modificáronse 1 ficheiros con 5 adicións e 0 borrados
  1. 5 0
      src/Legacy/models/filesystem.h

+ 5 - 0
src/Legacy/models/filesystem.h

@@ -19,6 +19,11 @@ namespace FileSystem {
         return QDir(path).exists();
     }
 
+    static bool createFilePath(QString file_path) { // Creates all necessary directories for file
+        QDir dir;
+        return dir.mkpath(QFileInfo(file_path).absoluteDir().absolutePath());
+    }
+
     static QString fileHash(const QString &fileName, QCryptographicHash::Algorithm hashAlgorithm = QCryptographicHash::Md5) {
         QFile file(fileName);
         if (file.open(QIODevice::ReadOnly)) {