Mauro24 commited on
Commit
1833979
·
verified ·
1 Parent(s): f683592

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -9
app.py CHANGED
@@ -8,23 +8,27 @@ import numpy as np
8
  import zipfile
9
 
10
 
11
- # Funzione per estrarre ed elaborare un file ZIP
12
  def extract_zip(file):
13
- # Controllo se il file è valido
14
  if not zipfile.is_zipfile(file.name):
15
  return "Errore: Il file caricato non è uno ZIP valido."
16
 
17
- # Percorso di estrazione
18
  extraction_dir = "./extracted_files"
19
  os.makedirs(extraction_dir, exist_ok=True)
20
 
21
- # Estrarre il contenuto del file ZIP
22
  with zipfile.ZipFile(file.name, 'r') as zip_ref:
23
  zip_ref.extractall(extraction_dir)
24
 
25
  # Elenco dei file estratti
26
- extracted_files = os.listdir(extraction_dir)
27
- return f"File estratti in '{extraction_dir}':\n" + "\n".join(extracted_files)
 
 
 
 
 
28
 
29
  # Interfaccia Gradio
30
  interface = gr.Interface(
@@ -32,11 +36,9 @@ interface = gr.Interface(
32
  inputs=gr.File(label="Carica il file ZIP"),
33
  outputs="text",
34
  title="Estrattore ZIP",
35
- description="Carica un file ZIP. Verrà estratto in una directory sul server."
36
  )
37
 
38
  # Avvia l'applicazione
39
  if __name__ == "__main__":
40
  interface.launch()
41
-
42
-
 
8
  import zipfile
9
 
10
 
11
+ # Funzione per estrarre ed elencare i file
12
  def extract_zip(file):
 
13
  if not zipfile.is_zipfile(file.name):
14
  return "Errore: Il file caricato non è uno ZIP valido."
15
 
16
+ # Percorso per salvare i file estratti
17
  extraction_dir = "./extracted_files"
18
  os.makedirs(extraction_dir, exist_ok=True)
19
 
20
+ # Estrazione del contenuto dello ZIP
21
  with zipfile.ZipFile(file.name, 'r') as zip_ref:
22
  zip_ref.extractall(extraction_dir)
23
 
24
  # Elenco dei file estratti
25
+ extracted_files = []
26
+ for root, dirs, files in os.walk(extraction_dir):
27
+ for f in files:
28
+ extracted_files.append(os.path.join(root, f))
29
+
30
+ # Ritorna la lista dei file con i relativi percorsi
31
+ return f"File estratti nella directory '{extraction_dir}':\n" + "\n".join(extracted_files)
32
 
33
  # Interfaccia Gradio
34
  interface = gr.Interface(
 
36
  inputs=gr.File(label="Carica il file ZIP"),
37
  outputs="text",
38
  title="Estrattore ZIP",
39
+ description="Carica un file ZIP. I file verranno estratti e mostrati nel risultato."
40
  )
41
 
42
  # Avvia l'applicazione
43
  if __name__ == "__main__":
44
  interface.launch()