hlnicholls commited on
Commit
5c91afd
1 Parent(s): f927f8a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -5,6 +5,11 @@ import os
5
 
6
  # Set up the Streamlit app title
7
  st.title("CBCT Scan DICOM Viewer")
 
 
 
 
 
8
 
9
  # Directory paths where DICOM files are stored
10
  single_image_directory = "/00002067/"
 
5
 
6
  # Set up the Streamlit app title
7
  st.title("CBCT Scan DICOM Viewer")
8
+ # Print the current working directory for debugging purposes
9
+ st.write("Current working directory:", os.getcwd())
10
+
11
+ # List all files and directories in the current working directory for debugging purposes
12
+ st.write("Contents of the current working directory:", os.listdir("."))
13
 
14
  # Directory paths where DICOM files are stored
15
  single_image_directory = "/00002067/"