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

  • SEARCH
  • Home
  • 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 9306071
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 19, 20262026-06-19T00:05:25+00:00 2026-06-19T00:05:25+00:00

Is possible to get all directories, subdirectories and files with recursion. I do this

  • 0

Is possible to get all directories, subdirectories and files with recursion.

I do this because i want to increase my programming logic, and learn how recursion work.

I know to do that with this way:

 string path = "D://";
            string rezdir,newpath;
            DirectoryInfo di = new DirectoryInfo(path);
            DirectoryInfo[] dir = di.GetDirectories().ToArray();
            for (int i = 0; i < di.GetDirectories().Length; i++)
            {
                Console.WriteLine(dir[i].ToString());
            }
            Console.WriteLine("\n\nChoose File: ");
            rezdir = Console.ReadLine();
            newpath = path + rezdir;
            di = new DirectoryInfo(newpath);
            dir = di.GetDirectories().ToArray();
            for (int i = 0; i < di.GetDirectories().Length; i++)
            {
                Console.WriteLine(dir[i].ToString());
            }
            Console.ReadKey();

But i don’t do that with recursion way, so ff someone can to do this, i’ll be grateful to him.

  • 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-19T00:05:27+00:00Added an answer on June 19, 2026 at 12:05 am

    Going by the code you posted – you seem to want some user interaction – so try something like this:

     public static class RecursiveTest
    {
        public static string Foo(DirectoryInfo currentPath)
        {
            if (!currentPath.Exists) return string.Empty;
    
            foreach (var directory in currentPath.EnumerateDirectories())
                Console.WriteLine("Directory {0}", directory.Name);
    
            foreach (var file in currentPath.EnumerateFiles())
                Console.WriteLine("File {0}", file.Name);
    
            while(true)
            {
                Console.WriteLine("Choose directory or file: ");
                string chosenPath = Console.ReadLine();
    
                string newPath = Path.Combine(currentPath.FullName, chosenPath);
                if(Directory.Exists(newPath))
                    return Foo(new DirectoryInfo(newPath));
    
                if(File.Exists(newPath))
                    return newPath;
    
                Console.WriteLine("File {0} doesn't exist!", newPath);
            }
        }
    }
    

    And call with something like this:

    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(RecursiveTest.Foo(new DirectoryInfo(@"d:\dev")));
    
            Console.ReadLine();
        }
    }
    

    HTH

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

Sidebar

Related Questions

Possible Duplicate: Get all files from VSS for a given date? I need to
Example: find / * Gives me all files and directories, but I want only
Is it possible to get all instances of a class by entering this class's
I want to make an exact copy of some files, directories and subdirectories that
I previously asked the question Get all files and directories in specific path fast
I want to get a list of all files in a directory that contain
Is it possible to get all 7 days for a given date using linq
Is it possible to get all div's within a page using jQuery including nested
Is it possible to get all/latest tweets from twitter public list? Example list: https://twitter.com/#!/thecaucus/u-s-senate
In C#, is it possible to get all values of a particular column from

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.