Is there any way to access hidden files programatically in Windows RT?
Whenever I try to do GetFileAsync for a hidden file, I get UnauthorizedAccessException.
Is there any way to access hidden files programatically in Windows RT?
Whenever I try to do GetFileAsync for a hidden file, I get UnauthorizedAccessException.
Not from the Windows Runtime API.
If the file is in your app data folder you can use the Win32 file API to find and manipulate the hidden file, but your app won't have permissions to do that elsewhere in the file system.