Можете да използвате jQuery файл за изтегляне плъгин за вашата цел, това е прост пример, който можете да използвате във вашия клиент за управление на изтегления файл:
$.fileDownload('urlForYourFile')
.done(function () {
alert('File download a success!');
$.post('/postChatFileSend', {fileName: 'fileName'}, function(data) {
//Check the response, if the status propery is true, the file must have been removed from the server
});
})
.fail(function() {
alert('An error has ocurred');
});
Тук има още примери