Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -48,6 +48,8 @@ if uploaded_zip_file is not None:
|
|
| 48 |
temp_dir = "temp_dicom_dir"
|
| 49 |
os.makedirs(temp_dir, exist_ok=True)
|
| 50 |
|
|
|
|
|
|
|
| 51 |
with zipfile.ZipFile(uploaded_zip_file, "r") as zip_ref:
|
| 52 |
zip_ref.extractall(temp_dir)
|
| 53 |
|
|
|
|
| 48 |
temp_dir = "temp_dicom_dir"
|
| 49 |
os.makedirs(temp_dir, exist_ok=True)
|
| 50 |
|
| 51 |
+
st.write(f"Temporary directory path: {temp_dir}")
|
| 52 |
+
|
| 53 |
with zipfile.ZipFile(uploaded_zip_file, "r") as zip_ref:
|
| 54 |
zip_ref.extractall(temp_dir)
|
| 55 |
|