Using an Azure Function I create an excel file and I am trying to save it to my Azure Blob Container. The code to save it is...
sl.SaveAs(filepath);
The problem is I don't know what to put for the variable filepath. When I save it on my local harddrive in development I use this path which works...
string filepath= @"C:Usersxxxsource
eposxxxxxxempx.xlsx";
In Azure, if I goto properties for the blob container I see this.
https://abc.blob.core.windows.net/xyz
I know I am missing something simple here. Right now I am running in debug mode locally using VS2019, not sure if that is the issue.
Any help would be greatly appreciated!
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…