Hi, am working on project with standard library and am trying to store the application log file in internal storage which can be accessed using the standard file explorer.
I have managed to store the files in the application folder using the below code but this folder is not accessible as its secured for the application only
string Folder = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal), "Log");
if (!Directory.Exists(Folder))
{
Directory.CreateDirectory(libFolder);
}
Please let me know if I missed anything or if there is any alternative way to achieve this functionality