Sfoglia il codice sorgente

Unzip in eigenem Ordner

Sebastian Gawliczek 2 anni fa
parent
commit
a6a209d870
3 ha cambiato i file con 25 aggiunte e 4 eliminazioni
  1. 16 0
      .vscode/launch.json
  2. 2 2
      app/tools/inspect_files.py
  3. 7 2
      app/tools/unzip.py

+ 16 - 0
.vscode/launch.json

@@ -0,0 +1,16 @@
+{
+    // Use IntelliSense to learn about possible attributes.
+    // Hover to view descriptions of existing attributes.
+    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+    "version": "0.2.0",
+    "configurations": [
+        {
+            "name": "Python: Aktuelle Datei",
+            "type": "python",
+            "request": "launch",
+            "program": "${file}",
+            "console": "integratedTerminal",
+            "justMyCode": true
+        }
+    ]
+}

+ 2 - 2
app/tools/inspect_files.py

@@ -165,7 +165,7 @@ def cubes_to_models(models):
 
 
 def main():
-    base_dir = 'status_server\\unzipped'
+    base_dir = 'app/temp/unzipped/loeffler-c11_2022-07-08_112547'
     cfg = Config(str(Path(base_dir + '\\gaps.ini').absolute()))
     # Dateiliste
     path_info = get_path_info(base_dir)
@@ -184,7 +184,7 @@ def main():
     result['cubes'] = get_cubes(base_dir, cfg, path_info, cubes_models)
     # Cubes aktuell?
     # Rest aktuell?
-    json.dump(result, open('status_server/logs/export.json', 'w'), indent=2)
+    json.dump(result, open('app/temp/logs/export.json', 'w'), indent=2)
 
 
 if __name__ == '__main__':

+ 7 - 2
app/tools/unzip.py

@@ -1,10 +1,15 @@
 import zipfile
+from pathlib import Path
+import os
 
 
 def unzip_file(filename, target):
+    subdir = Path(filename).name[:-4]
+    target_subdir = target + '/' + subdir
+    Path(target_subdir).mkdir()
     with zipfile.ZipFile(filename, 'r', compression=zipfile.ZIP_DEFLATED, compresslevel=9) as zip:
-        zip.extractall(target)
+        zip.extractall(target_subdir)
 
 
 if __name__ == '__main__':
-    unzip_file('status_server/zip_files/loeffler-c11_2022-07-08_112547.zip', 'status_server/unzipped')
+    unzip_file('app/temp/zip_files/loeffler-c11_2022-07-08_112547.zip', 'app/temp/unzipped')