I have a webjob that writes some data on the %temp% folder, which maps to d:\local\temp.
When i use the console tool on the azure portal, the data is there, on d:\local\temp.
When i try to access the files on the website (asp.net) the files are not there. But %temp% also maps to d:\local\temp.
Why?
Is there a path that maps to the same location?
The data I write on the local %temp% is a cache of a data stored on azure storage blob. I can re-create the cache if the data on %temp% is lost.
Thanks.