AdritRao commited on
Commit
9bd35d2
1 Parent(s): 6de1508

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -29,6 +29,9 @@ if uploaded_zip_file is not None:
29
  temp_dir = "temp_dicom_dir"
30
  os.makedirs(temp_dir, exist_ok=True)
31
 
 
 
 
32
  with zipfile.ZipFile(uploaded_zip_file, "r") as zip_ref:
33
  zip_ref.extractall(temp_dir)
34
 
 
29
  temp_dir = "temp_dicom_dir"
30
  os.makedirs(temp_dir, exist_ok=True)
31
 
32
+ full_temp_dir_path = os.path.abspath(temp_dir)
33
+ st.write("Full path to temp_dicom_dir:", full_temp_dir_path)
34
+
35
  with zipfile.ZipFile(uploaded_zip_file, "r") as zip_ref:
36
  zip_ref.extractall(temp_dir)
37