If I publish an Asp.Net core application to IIS. And in my controller I have the following action method. Will I be able to access the clients AppData folder.
Public async Task<IActionResult> Downloadd()
{
Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)
Return View ();
}