소스 검색

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)) {