Spaces:
Sleeping
Sleeping
Commit
路
085c70b
1
Parent(s):
ad0b629
Subindo arquivos152
Browse files
app.py
CHANGED
@@ -260,6 +260,12 @@ def analyze_aia(uploaded_files):
|
|
260 |
html_result = combined_results_df.to_html(escape=False, classes="output-html")
|
261 |
return output_style + f'<div class="output-container">{html_result}</div>'
|
262 |
|
|
|
|
|
|
|
|
|
|
|
|
|
263 |
# Caminho do exemplo fornecido
|
264 |
example_file_path = "/mnt/data/example1.aia"
|
265 |
|
|
|
260 |
html_result = combined_results_df.to_html(escape=False, classes="output-html")
|
261 |
return output_style + f'<div class="output-container">{html_result}</div>'
|
262 |
|
263 |
+
# Listar arquivos no diret贸rio /mnt/data
|
264 |
+
print("Arquivos no diret贸rio /mnt/data:")
|
265 |
+
for root, dirs, files in os.walk("/mnt/data"):
|
266 |
+
for file in files:
|
267 |
+
print(os.path.join(root, file))
|
268 |
+
|
269 |
# Caminho do exemplo fornecido
|
270 |
example_file_path = "/mnt/data/example1.aia"
|
271 |
|