Spaces:
Runtime error
Runtime error
is_dir
Browse files
main.py
CHANGED
|
@@ -41,7 +41,7 @@ def files_in_folder(path: str):
|
|
| 41 |
)
|
| 42 |
|
| 43 |
res["path"] = res.apply(
|
| 44 |
-
lambda x: f"<a href=/files/{path}{x.path}{'/' if x.
|
| 45 |
axis=1,
|
| 46 |
)
|
| 47 |
|
|
|
|
| 41 |
)
|
| 42 |
|
| 43 |
res["path"] = res.apply(
|
| 44 |
+
lambda x: f"<a href=/files/{path}{x.path}{'/' if x.is_dir else ''}>{x.path}</a>",
|
| 45 |
axis=1,
|
| 46 |
)
|
| 47 |
|