Преглед на файлове

Add recursive folders creation function in FileSystem

Ivan Arkhipov преди 5 години
родител
ревизия
247e7bb06b
променени са 1 файла, в които са добавени 5 реда и са изтрити 0 реда
  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)) {