crackyourinterview.com


To improves our performance please Like Share Subscribe(Will boost us)

File Upload Container
Question Posted on 02 Dec 2024Home >> Tutorial >> Node.js Tutorial >> File Upload Container

File Upload Container

File Upload Container


Well here in below code we will upload file in container and to upload file in container we have blob storage where container is created below is the code to upload file.

In Below code we have create a async function where we need to send buffer file and the filename to upload in container.

const blobStorage="NameOfStorage";
const containerName="ContainerName"
const blobServiceClient = new BlobServiceClient(
`https://${blobStorage}.blob.core.windows.net`,
new DefaultAzureCredential()
);

async function uploadFile(file,filename) {
try {
// Get a reference to the container
const containerClient = blobServiceClient.getContainerClient(containerName);
// Create the container if it does not exist
await containerClient.createIfNotExists();
console.log(`Container '${containerName}' is ready.`);
// Get a reference to the blob (file) you want to upload
const blockBlobClient = containerClient.getBlockBlobClient(filename);
// Read the file from the local file system
//const fileStream = fs.createReadStream(file);
// Upload the file to Azure Blob Storage
await blockBlobClient.upload(file,file.length);
console.log(`File uploaded to blob storage successfully.`);
} catch (error) {
console.error('Error uploading file:', error);
}
}


Container File
0
0




.


Most Visited Questions:-

Deep Learning Questions Answers
Below are the different Deep Leaning Questions and answer a More...

What is Gulpjs and some multiple choice questions on Gulp
Gulpjs is an open source whihc helps in building Javascript More...

Continuous Integration Questions Answers
Below are the 20 odd questions for CI or Continuous Integra More...

Derived relationships in Association Rule Mining are represented in the form of __________.
Derived relationships in Association Rule Mining are repres More...

Microservices Architecture Questions Answers
Below are the different questions on Microservices Architec More...




Other Important Questions

Parts of Node.js

Install Node.js Linux

Node.js First Example

Node.js Globals

Node.js DNS






@2014-2022 Crackyourinterview (All rights reserved)
Privacy Policy - Disclaimer - Sitemap