Skip to content
Advertisement

Azure function don’t accept to create file on remote

I would download file on local the create a stream then send to an API.

In localhost files get created via blobClient.downloadToFile(defaultFile);

But When I deploy function it can not find file to stream, so I think that the download does not happen or in bad location.

I get this error

JavaScript

Here’s my code

JavaScript

I found this post having same issue , that’s why I user path module and passed __dirname to function params.baseDir.

Advertisement

Answer

If you want to download a file from Azure blob and read it as a stream, just try the code below, in this demo, I try to download a .txt file to a temp folder(you should create it first on Azure function)and print its content from the stream for a quick test:

JavaScript

Result

File has been downloaded:

enter image description here

read as stream successfully:

enter image description here

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement