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

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -