How to access environment variables from winrt

Is there any getenv element in WinRT?

Or is it possibly impossible to access environment variables at all?

+4
source share
1 answer

I believe that it is not possible to extract environment variables from a WinRT application. However, your application has a local, roaming and temporary folder available to it. Windows.Storage.ApplicationData.Current has all the root folders needed to create / read / delete files and folders in application folders.

+1
source

All Articles