views:

207

answers:

1

When I use System.IO.Directory.GetFiles method in C:\, an error is raised:

Access to the path 'c:\System Volume Information' is denied.

How can I handle that?

A: 

It's a hidden system folder and the reason you are getting this error is because your application is running under your local account.

eKek0