3
I am creating a zipped file and need to save it to my user, only when I select the location where q is saved the file it saves on the server where the site is hosted.
Way
string zip = @"C:\file.zip";
Passing to be saved...
using (var fileStream = new FileStream(zip, FileMode.Create))
It has as I save direct on my user’s PC?
Cool, I’ll use this alternative...
– Jhonas