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

java - Incorrect order of records in M-M relationship in hibernate -

command line - Use qwinsta in PowerShell ISE -

php - I want to create a website for polls/survey like this http://www.poll-maker.com/ -