Как извлечь сжатый файл в определенное место с помощью angularjs или любой библиотеки javascript
down vote favorite I have hosted one Folder in local IIS,the folder which includes compressed files. When i'm making http request to that hosted url, it is automatically downloaded into default location i.e. Downloads. I want to select the destination path for that file saving path and before saving into that destination path it should extracted. Tell me any approach which should be client side like javascript, angularjs, etc,. Can any one tell me how to do this Thanks in advance. Please follow below which i have wrote in my application. Any one can update the below code or propose new approach.
Что я уже пробовал:
$протоколу HTTP({
метод: "получить",
URL-адрес: 'http://localhost:1234/' + имя+'.zip-архив,
тип ответа: 'arraybuffer'
}). success(функция (данные, статус, заголовки) {
заголовки = заголовки();
var contentType = headers ['content-type'];
var linkElement = document. createElement('a');
пробовать {
ВАР Blob-объект = новый большой двоичный объект([данные], { тип: сбой передачи});
окна ВАР URL-адрес =.URL-адрес.createObjectURL(BLOB-объектов);
linkElement. setAttribute('href', url);
linkElement. setAttribute ("скачать", имя файла);
linkElement. setAttribute ('target', '_blank');
linkElement.нажмите();
} catch (ex) {
консоли.журнал(экс);
}
}). ошибка (функция (данные) {
консоли.отчет(сведения);
});