Sharing files between 2 Azure Functions? -


i know can use local file system in azure functions in d:\local\temp.

is possible 2 azure functions share directory in file system?

i download file in 1 azure function, , read/write in another, , upload in yet azure function.

is possible? or have these 3 steps in 1 azure function?

sharing local folder not recommended way communicate between 2 functions. in case running on consumption plan, functions might running on 2 different instances (server), , lose communication channel.

use blob storage instead of local folders.


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -