ASP.NET Download All Files as Zip

后端 未结 4 427
不知归路
不知归路 2020-12-14 12:31

I have a folder on my web server that has hundreds of mp3 files in it. I would like to provide the option for a user to download a zipped archive of every mp3 in the directo

4条回答
  •  無奈伤痛
    2020-12-14 13:26

    You could add a custom handler (.ashx file) that takes the file path, reads the file compresses it using a compression library and returns the bytes to the end user with the correct content-type.

提交回复
热议问题