Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -27,7 +27,7 @@ async def generate_file_structure(path='.', encoding='utf-8'):
|
|
27 |
for entry in entries:
|
28 |
entry_path = os.path.join(path, entry)
|
29 |
if os.path.isdir(entry_path):
|
30 |
-
child_structure = generate_file_structure(entry_path, encoding)
|
31 |
file_structure['children'].append(child_structure)
|
32 |
elif os.path.isfile(entry_path):
|
33 |
try:
|
|
|
27 |
for entry in entries:
|
28 |
entry_path = os.path.join(path, entry)
|
29 |
if os.path.isdir(entry_path):
|
30 |
+
child_structure =await generate_file_structure(entry_path, encoding)
|
31 |
file_structure['children'].append(child_structure)
|
32 |
elif os.path.isfile(entry_path):
|
33 |
try:
|