Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update app.py
Browse files
app.py
CHANGED
@@ -509,24 +509,18 @@ def display_file_manager_sidebar(groups_sorted):
|
|
509 |
elif f.endswith(".wav"):
|
510 |
all_wav.append(f)
|
511 |
|
512 |
-
col1,
|
513 |
with col1:
|
514 |
-
if st.button("🗑
|
515 |
for f in all_md:
|
516 |
os.remove(f)
|
517 |
-
st.session_state.should_rerun = True
|
518 |
-
with col2:
|
519 |
-
if st.button("🗑 DelMP3"):
|
520 |
for f in all_mp3:
|
521 |
os.remove(f)
|
522 |
-
st.session_state.should_rerun = True
|
523 |
-
with col3:
|
524 |
-
if st.button("🗑 DelWAV"):
|
525 |
for f in all_wav:
|
526 |
os.remove(f)
|
527 |
-
st.session_state.should_rerun = True
|
528 |
with col4:
|
529 |
-
if st.button("⬇️
|
530 |
zip_name = create_zip_of_files(all_md, all_mp3, all_wav, st.session_state.get('last_query', ''))
|
531 |
if zip_name:
|
532 |
st.sidebar.markdown(get_download_link(zip_name, "zip"), unsafe_allow_html=True)
|
|
|
509 |
elif f.endswith(".wav"):
|
510 |
all_wav.append(f)
|
511 |
|
512 |
+
col1, col4 = st.sidebar.columns(2)
|
513 |
with col1:
|
514 |
+
if st.button("🗑 Delete All"):
|
515 |
for f in all_md:
|
516 |
os.remove(f)
|
|
|
|
|
|
|
517 |
for f in all_mp3:
|
518 |
os.remove(f)
|
|
|
|
|
|
|
519 |
for f in all_wav:
|
520 |
os.remove(f)
|
521 |
+
st.session_state.should_rerun = True st.session_state.should_rerun = True
|
522 |
with col4:
|
523 |
+
if st.button("⬇️ Zip All"):
|
524 |
zip_name = create_zip_of_files(all_md, all_mp3, all_wav, st.session_state.get('last_query', ''))
|
525 |
if zip_name:
|
526 |
st.sidebar.markdown(get_download_link(zip_name, "zip"), unsafe_allow_html=True)
|