I try to access the root volume of a drive to get a list of files like this:
Directory.GetFiles(SourceFolder, FileFilter, searchOption)
and got this error :
Additional information: Access to the path 'H:\System Volume Information' is denied.
but sub folder is okay. I try to add:
<requestedExecutionLevel level="requireAdministrator" uiAccess="true" />
to the app.manifest, and run as admin, and it still won't work. What can I try next?
Thank you