I am using this code:

DirectoryInfo dir = new DirectoryInfo("D:\\");
foreach (FileInfo file in dir.GetFiles("*.*",SearchOption.AllDirectories))
{
    MessageBox.Show(file.FullName);
}

I get this error:

UnauthorizedAccessException was unhandled

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

How might I solve this?

link|improve this question
3  
Run program with an account that has permissions? – Bala R Sep 24 '11 at 18:53
i actually want to fix this... – Haji Tag Sep 24 '11 at 18:57
what should i add to my code so that program can ignore System folders Windows? for search – Haji Tag Sep 24 '11 at 19:03
1  
That's not what you asked, Haji. – Michael Petrotta Sep 24 '11 at 19:03
yes... but fix means that i want to search between by Accessed Folders... how would i do that? – Haji Tag Sep 24 '11 at 19:10
show 1 more comment
feedback

2 Answers

There is no way in .NET to override privileges of the user you are running this code as.

There's only 1 option really. Make sure only admin runs this code or you run it under admin account. It is advisable that you either put "try catch" block and handle this exception or before you run the code you check that the user is an administrator:

WindowsIdentity currentIdentity = WindowsIdentity.GetCurrent();
WindowsPrincipal currentPrincipal = new WindowsPrincipal(currentIdentity);
if (currentPrincipal.IsInRole(WindowsBuiltInRole.Administrator))
{
DirectoryInfo dir = new DirectoryInfo("D:\\");
foreach (FileInfo file in dir.GetFiles("*.*",SearchOption.AllDirectories))
{
MessageBox.Show(file.FullName);
}
}
link|improve this answer
Additionally, you can require that the application be run as administrator in the manifest. See stackoverflow.com/questions/5276674/… – vcsjones Sep 24 '11 at 19:13
this code is not working for me... Err is still there! – Haji Tag Sep 24 '11 at 19:16
where to put try-catch statement. try catch statement should not break my loop – Haji Tag Sep 24 '11 at 19:22
try something like this: – Kamil Krasinski Sep 24 '11 at 19:43
feedback

try calling this method putting one more try catch block before calling - this will mean top folder lacks required authorisation:

     static void RecursiveGetFiles(string path)
    {
        DirectoryInfo dir = new DirectoryInfo(path);
        try
        {

            foreach (FileInfo file in dir.GetFiles())
            {
                MessageBox.Show(file.FullName);
            }
        }
        catch (UnauthorizedAccessException)
        {

            Console.WriteLine("Access denied to folder: " + path);
        }

        foreach (DirectoryInfo lowerDir in dir.GetDirectories())
        {
            try
            {
                RecursiveGetFiles(lowerDir.FullName);

            }
            catch (UnauthorizedAccessException)
            {

                MessageBox.Show("Access denied to folder: " + path);
            }
        }
    }

}
link|improve this answer
Problem is here in FileInfo[] files = dir.GetFiles("*.*",SearchOption.AllDirectories); – Haji Tag Sep 24 '11 at 19:54
when we call dir.GetFiles("*.*",SearchOption.AllDirectories); program starts file search including "System Volume Information" folder that generates exception – Haji Tag Sep 24 '11 at 19:56
can you try above... This doesn't search in a directory unless user has required privileges. I've run it against my C drive and it seems to work. – Kamil Krasinski Sep 24 '11 at 20:07
let me check... – Haji Tag Sep 24 '11 at 20:27
Thanks a lot... that was my requiremet :-) – Haji Tag Sep 24 '11 at 20:36
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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