I have a blob container at Azure blob storage and inside this container there are many directories. Again inside those directories there can be other directories. Now suppose if someone adds a blob to anywhere inside the container, I want the location and blob name. Please help me with your inputs.
I have tried basic blobtrigger azure function, but couldnot make it more.
Thanks in advance
path/filename
withcontainerName/{name}
path setting, what location do you need, relative path under the container or complete url? Also, what language do you use? - Jerry Liupath = "samples-workitems/{name}"
and@BindingName("name") String name
, doesn'tname
give you thedir../filename
? could you elaboratewhole path
, in the format ofcontainerName/dir.../filename
or what? - Jerry Liu