Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have a .net app which currently uses a json file stored locally on my machine.

I want to convert this app to an Azure Function App but I'm not sure where I can put my json file so that I can alter it in the future.

I am basically asking what is the equivalent in Azure.

var json = @"DocumentExtractorexample.json";

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

If you are based on Windows OS, then azure function has a root directory: D:homesitewwwroot.

You can use this:

https://docs.microsoft.com/en-us/dotnet/api/system.io.directory.getcurrentdirectory?view=net-5.0

If you store a file in this root directory, it will actually be stored in the file share of the storage account specified when creating the function app.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...