var url = "http://localhost:9996/api/GetZipFile?id=1-1" ;
$.ajax({
url: url,
type: 'GET',
contentType: 'application/json',
success: function (result) {
if (result) {
// reslut is binary data of zip file
// how can read(Decompressing) file and get files from this file
}
},
error: function (jqXHR, textStatus, errorThrown) {
console.log("Falid2");
}
});