Browse Source

Changed mkdir to mkpath in AStandardPaths::scan_paths

George 4 năm trước cách đây
mục cha
commit
682a7441c9
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/astandardpaths.cpp

+ 1 - 1
src/astandardpaths.cpp

@@ -22,7 +22,7 @@ void AStandardPaths::scan_paths()
         DEB "Scanning " << dir.path();
         if(!dir.exists()) {
             DEB"Creating " << dir.path();
-            dir.mkdir(path);
+            dir.mkpath(path);
         }
     }
 }