How to upload folder into azure automatically?
问题 Now I have this part of a code, which shows me all folders in the directory. var dirPath = path.join("C:\\", 'ILJATEST'); fs.readdir(dirPath, function (err, files) { if (err) { return console.log('Unable to scan dir ' + err); } files.forEach(function (file) { console.log(file); }); }); And this part, where I can choose file and upload to Azure blob storage when click button. (it's work) document.getElementById('upload-button').addEventListener('click', () => { const file = document