Home > Blockchain >  How to access WebRootPath anywhere in the project?
How to access WebRootPath anywhere in the project?

Time:02-02

I'd like to access IWebHostEnvironment.WebRootPath anywhere in the asp.net core mvc application. For instance, some random class deep in the class hierarchy. Is there a static class or some other method to do so?

I am aware that I can inject IWebHostEnvironment or that I can cache the value on the startup of the application. My question is strictly about accessing it without these methods.

CodePudding user response:

I am aware that I can inject IWebHostEnvironment or that I can cache the value on the startup of the application. My question is strictly about accessing it without these methods.

No, you cannot. There's no static built in here with access to this information. You can create your own though.

  • Related