Reputation: 2014
Some time ago I created with help from a friend an Azure Webjob using this post. I had the job running for a while, then stopped it. I would like now to access/download the files/zip-folder I uploaded back then, but I don't know how to do it. More precisely, I want to get to what is labelled as sample.zip in the image below:
I had the zip-file also locally saved on my computer, but ever since I have installed a new OS and deleted my old files. I get that far to find the old job and open it (see pics below), but afterwards I am clueless. Can you walk me through what to do to get to zip-folder? Tnx
PS: In case it matters, I created at some point an Ubuntu virtual environment for the job (in case terminal commands are needed to get to the zip-folder)
Upvotes: 1
Views: 1993
Reputation: 963
You can do it in two different ways.
D:\home\site\wwwroot\App_Data\jobs\triggerType == Continous||TimerTriggered
D:\home\site\jobs{triggerType} where triggerType == Continous || TimerTriggered
If this doesnt work, you can try this command -
D:\home\site\wwwroot\App_Data\jobs\triggerType == Continous||TimerTriggered
This way, it will list out the contents of the webjob and files associated in the webjob. Please see below.
Upvotes: 2