JSenkCC commited on
Commit
3422b0f
·
verified ·
1 Parent(s): e797b01

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -25
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
- if st.session_state.show_file_structure:
704
- st.write("File structure:")
705
-
706
- def display_folder_contents(path, level=0):
707
- """
708
- Recursively display folder contents using Streamlit expanders.
709
-
710
- Args:
711
- path (str): The folder path.
712
- level (int): The current depth of the folder in the hierarchy.
713
- """
714
- # Get subfolders and files
715
- items = sorted(os.listdir(path))
716
- for item in items:
717
- item_path = os.path.join(path, item)
718
- if os.path.isdir(item_path):
719
- # Display folder as an expander
720
- with st.expander(f"{' ' * 4 * level}📂 {item}", expanded=False):
721
- display_folder_contents(item_path, level + 1)
722
- else:
723
- # Display file
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