Does ASP.NET Core 2.1 offer a cross-platform way to specify a path where to save application data?
The closest solution I've found is to store data in either
Environment.SpecialFolder.ApplicationDataorEnvironment.SpecialFolder.LocalApplicationData
Yet, I'm not sure that matches standard practices.
Does anyone know if there is a cross-platform way to specify the data folder to be used by a web API?