Update app.py
Browse files
app.py
CHANGED
@@ -700,31 +700,27 @@ def project_view_page():
|
|
700 |
if "show_file_structure" not in st.session_state:
|
701 |
st.session_state.show_file_structure = False
|
702 |
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
st.write(f"{' ' * 4 * (level + 1)}📄 {item}")
|
725 |
-
|
726 |
-
# Start displaying from the project folder root
|
727 |
-
display_folder_contents(project_folder)
|
728 |
|
729 |
|
730 |
|
|
|
700 |
if "show_file_structure" not in st.session_state:
|
701 |
st.session_state.show_file_structure = False
|
702 |
|
703 |
+
def display_folder_contents(folder_path, prefix=""):
|
704 |
+
"""Recursively lists the contents of a folder in a bash 'ls -R'-like style."""
|
705 |
+
try:
|
706 |
+
items = sorted(os.listdir(folder_path)) # Sort items for consistent display
|
707 |
+
st.write(f"{prefix}{os.path.basename(folder_path)}/") # Show the folder name
|
708 |
+
|
709 |
+
for item in items:
|
710 |
+
item_path = os.path.join(folder_path, item)
|
711 |
+
if os.path.isdir(item_path):
|
712 |
+
# Recursively display sub-folders
|
713 |
+
display_folder_contents(item_path, prefix=prefix + " ")
|
714 |
+
else:
|
715 |
+
# Display files with an indented structure
|
716 |
+
st.write(f"{prefix} {item}")
|
717 |
+
except Exception as e:
|
718 |
+
st.error(f"Error displaying folder contents: {e}")
|
719 |
+
|
720 |
+
# Example usage in your `project_view_page` function:
|
721 |
+
if st.session_state.show_file_structure:
|
722 |
+
st.write("File structure:")
|
723 |
+
display_folder_contents(project_folder)
|
|
|
|
|
|
|
|
|
724 |
|
725 |
|
726 |
|