简体   繁体   中英

Access Denied on accessing the system folder of any drive like system volume information

I have the following recursion code to get all the folders and files of a selected directory. But when I select a drive, for example E:\\\\ .. , I am getting an error message of

"Access denied in accessing E:\\system volume information"

Is it possible to bypass the system volume information folder?

This is the code I am using:

private static ArrayList GenerateFileList(string Dir)
{
    ArrayList fils = new ArrayList();
    bool Empty = true;

    foreach (string file in Directory.GetFiles(Dir)) // add each file in directory
    {
        fils.Add(file);
        Empty = false;
    }

    if (Empty)
    {
        if (Directory.GetDirectories(Dir).Length == 0)
            // if directory is completely empty, add it
        {
            fils.Add(Dir + @"/");
        }
    }

    foreach (string dirs in Directory.GetDirectories(Dir)) // recursive
    {
        foreach (object obj in GenerateFileList(dirs))
        {
            fils.Add(obj);
        }

    }
        return fils; // return file list
     }
private static ArrayList GenerateFileList(string Dir)
{
    ArrayList fils = new ArrayList();
    bool Empty = true;

    try
    {
        foreach (string file in Directory.GetFiles(Dir)) // add each file in directory
        {
            fils.Add(file);
            Empty = false;
        }
    }
    catch(UnauthorizedAccessException e)
    {
        // I believe that's the right exception to catch - compare with what you get
        return new ArrayList();
    }

        if (Empty)
        {
            if (Directory.GetDirectories(Dir).Length == 0)
                // if directory is completely empty, add it
            {
                fils.Add(Dir + @"/");
            }
        }

    foreach (string dirs in Directory.GetDirectories(Dir)) // recursive
    {
        foreach (object obj in GenerateFileList(dirs))
        {
            fils.Add(obj);
        }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM