# Re-save the file to ensure it appears as attachment for download
from shutil import copyfile
src = "/mnt/data/Prezentacja_Rajgrod.pptx"
dst = "/mnt/data/Prezentacja_Rajgrod_download.pptx"
copyfile(src, dst)
dst