[Answered ]-Downloading archives response corrupts files

2👍

The problem is that you’re not reading it as a binary file 🙂
This should work:

wrapper = FileWrapper(file("C:/pics.zip", 'rb'))
👤Wolph

Leave a comment