I am creating a zipped file and need to save it to my user, but when I save the location wherever the file is saved it saves on the server where the site is hosted.
Path
string zip = @"C:\file.zip";
Moving on to be saved ...
using (var fileStream = new FileStream(zip, FileMode.Create))
How can I save direct to my user's PC?