Hi Guest

MobileUser

1 HomePage 1 Jobs 1 WalkIn 1Articles  

Cat Exam

Start a Blog

Develop Your Skill

Develop Your Skill



Develop Your Skill

 :) Latest Topic
general knowledge
ASP.NET
VB.NET
SQL Query
UDDI
CLASS
JavaScript Questions
SharePoint Interview
SilverLight
WCF
 AngularJS
 :) Hot Jobs
 
 :) Latest Articles


  

 


File Upload Container
Question Posted on 02 Dec 2024

Home >> 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



 
 Input Your Comments Or suggestions(If Any)
 Name
 Email(optional)
 Comments


Other Important Questions
Parts of Node.js
Install Node.js Linux
Node.js First Example
Node.js Globals
Node.js DNS






 
Top Searches:asp net questions vb net questions sql query uddl questions class javascript Questions sharepoint interview questions and concept silverlight questions and concept wcf questions beans general knowledge ajax questions
PHP | Biztalk | Testing | SAP | HR |