Hi ,
I want to give user the option to select the file path before saving the file on button click as below,
st.download_button(
label="Download data as CSV",
data=csv,
file_name="large_df.csv",
mime="text/csv",
)
Is there any option available in streamlit to open the file explore which will enable user to select file path?