Get upload progress using Azure Storage Node.JS SDK -


looking @ this, have code looks

var azure = require('azure-storage');     var blobsvc = azure.createblobservice()  blobsvc.createblockblobfromlocalfile('mycontainer', 'giantfile', 'giantfile.bak', function(error, result, response){   if(!error){     // file uploaded   } }); 

this "work" have no idea status of each upload until returns. we'd print progress of upload console since it's sequence of large files can take several hours.

i'm afraid don't think possible out of box sdk. msdn artical apparently such api hasn't been implemented yet.


Comments

Popular posts from this blog

python - Mongodb How to add addtional information when aggregating? -

java - Spring Data JPA: Why findOne(id) executing delete query internally? -

ruby - Net::HTTP extremely slow responses for HTTPS requests -