Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8916587
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T05:16:22+00:00 2026-06-15T05:16:22+00:00

I want to retreive all sub directories from a root directory until the last

  • 0

I want to retreive all sub directories from a root directory until the last level.

I have ajusted my code but it only retrieve first level folders and the files inside it.

Is there a way to go all the way through the last level?

This is the code

    Response.Write("<ul class=\"jqueryFileTree\" style=\"display: none;\">\n");

    foreach (DriveInfo drive in allDrives)
    {
        if (drive.IsReady == true) 
        {
            Response.Write("\t<li class=\"drive collapsed\"><a href=\"#\" rel=\"" + drive.ToString() + "\">" + drive.ToString() + "</a>\n");     

            System.IO.DirectoryInfo di = new System.IO.DirectoryInfo(drive.ToString());
            Response.Write("<ul>");

            foreach (System.IO.DirectoryInfo di_child in di.GetDirectories())
            {
                Response.Write("\t<li class=\"directory collapsed\"><a href=\"#\" rel=\"" + drive + di_child.Name + "/\">" + di_child.Name + "</a>\n");
                Response.Write("<ul>");

                foreach (System.IO.FileInfo fi in di.GetFiles())
                {
                    string ext = "";

                    if (fi.Extension.Length > 1)
                    {
                        ext = fi.Extension.Substring(1).ToLower();
                    }

                    Response.Write("\t<li class=\"file ext_" + ext + "\"><a href=\"#\" rel=\"" + drive + fi.Name + "\">" + fi.Name + "</a></li>\n");
                }

                Response.Write("</ul></li>");
            }
            Response.Write("</ul></li>");
       }
    }

    Response.Write("</ul>");
}
catch (Exception)
{
    throw;
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T05:16:24+00:00Added an answer on June 15, 2026 at 5:16 am

    you need a recursive function.

    private IEnumerable<dynamic> GetFilesByDirectory(string path)
    {
        var directories = Directory.GetDirectories(path);
        var files = Directory.GetFiles(path);
    
        yield return new {path, directories, files };
    
        foreach(var directory in directories)
        {
            yield return GetFilesByDirectory(directory);
        }
    }
    

    and as a side note. you should not be calling Response.Write within the controller action. instead you can return an ActionResult for rendering a view and put your html template in the view.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to retrieve all clientID from my MCC account. I'm using this code
I want to retrieve all records from one table when there are no matches
I want to retrieve all documents from folder to it's subfolder and so on
I want to achieve something relatively simple: I want to retrieve all objects from
I want to retrieve the recently viewed pictures from IE. I know that all
What I want to do is retrieve all emails from MS SQL Customer table
What's jQuery statement if I want to retreive all elements whose id starting with
The command svn list will give me list of all the sub directories in
i want to retrieve 15 records from a table of around 50 records. but
I want to retrieve all the images from gallery from its database and want

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.