So i'm using Directory.GetFiles(folder, "*.jpg", SearchOption.AllDirectories). When i try it on the c:\ drive in windows 7, since windows 7 still had c:\documents and settings (for legacy systems like xp), it's a protected folder. It's only protected because it's not really a folder. It's kind of a dummy folder. So when I run this code:

try
{
    string[] folders = Directory.GetFiles(@"C:\\","*.jpg", SearchOption.AllDirectories);
    foreach (string item in folders)
    { 
       //blah blah
    }
catch
{
}

It always throws an UnauthorizedAccessException. It doesn't let me past that. What I'm trying to do is have it skip over any folder that it doesn't have permission to access, but just continue to search, don't get caught up on the catch block, just continue. Any ideas?

link|improve this question

50% accept rate
What do you mean by kind of a dummy folder? – alexn May 29 '11 at 19:19
Are you sure that you're not missing a semi colon in your call? Probably just a typo – Oskar Kjellin May 29 '11 at 19:23
@alexn I think he meant it is a folder-pointer, a shortcut, I am not sure about the correct term for it. It doesn't have data but it points to another location. – oleksii May 29 '11 at 19:34
The technical term for it is reparse point, but it's also known as a junction. – Neil May 29 '11 at 20:06
feedback

1 Answer

I would try one of the two workarounds in this article (click on workarounds tab near the bottom):

http://connect.microsoft.com/VisualStudio/feedback/details/94751/optionally-prevent-directoryinfo-getfiles-from-throwing-unauthorizedaccessexception

link|improve this answer
1  
I'd suggest the guitar_man one, the other is quite a mess. – Ben Voigt May 29 '11 at 19:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.