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 404375
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T17:18:09+00:00 2026-05-12T17:18:09+00:00

Using .NET 3.0, I’ve got the method below which correctly returns a collection of

  • 0

Using .NET 3.0, I’ve got the method below which correctly returns a collection of all of the files and directories (and sub-directories) of a specified directory. I’d like to, if possible, dumb this down to only use constructs that I’m pretty comfortable with. Specifically, here are the things I’m not clear on:

1. IEnumerable<FileSystemInfo>: I'd like to return List<FileSystemInfo> instead
2. Stack<FileSystemInfo>: I'd list to use List<FileSystemInfo> instead.
3. yield return: I've never used this before

.

public static IEnumerable<FileSystemInfo> GetAllFilesAndDirectories ( string dir ) {

    DirectoryInfo dirInfo = new DirectoryInfo( dir );
    Stack<FileSystemInfo> stack = new Stack<FileSystemInfo>();

    stack.Push( dirInfo );
    while ( dirInfo != null || stack.Count > 0 ) {
        FileSystemInfo fileSystemInfo = stack.Pop();
        DirectoryInfo subDirectoryInfo = fileSystemInfo as DirectoryInfo;
        if ( subDirectoryInfo != null ) {
            yield return subDirectoryInfo;
            foreach ( FileSystemInfo fsi in subDirectoryInfo.GetFileSystemInfos() ) {
                stack.Push( fsi );
            }
            dirInfo = subDirectoryInfo;
        } else {
            yield return fileSystemInfo;
            dirInfo = null;
        }
    }

}

.

The argument could be made that I should just get comfortable with the code above, but that’s not what I’m shooting for today.

Thanks in advance

  • 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-05-12T17:18:09+00:00Added an answer on May 12, 2026 at 5:18 pm

    I believe you’re looking for the existing method GetFileSystemInfos(string, SearchOptions). If you specify AllDirectories as the SearchOptions value it will recursively search the passed in folder.

    For Example:

    public static List<FileSystemInfo> GetAllFilesAndDirectories ( string dir ) {
      DirectoryInfo info = new DirectoryInfo(dir);
      FileSystemInfo[] all = info.GetFileSystemInfos("*", SearchOptions.AllDirectories);
      return new List<FileSystemInfo>(all);
    }
    

    If you want to write it out the long way though you can do the following

    public static List<FileSystemInfo> GetAllFilesAndDirectories ( string dir ) {
      int i = 0; 
      List<DirectoryInfo> toProcess = new List<DirectoryInfo>();
      List<FileSystemInfo> list = new List<FileSystemInfo>();
      toProcess.Add(new DirectoryInfo(dir));
      while ( i < toProcess.Count ) { 
        DirectoryInfo curDir = toProcess[i];
        foreach ( FileSystemInfo curFile in curDir.GetFileSystemInfos() ) {
          list.Add(curFile);
          DirectoryInfo maybe = curFile as DirectoryInfo;
          if ( maybe != null ) {
            toProcess.Add(maybe);
          }
        i++;
      }
      return list;
    }
    
      FileSystemInfo[] all = info.GetFileSystemInfos("*", SearchOptions.AllDirectories);
      return new List<FileSystemInfo>(all);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using .Net how can I check which users in our domain have resources (files,
Using .NET (in an SSIS package): I've got an XML string in memory which
I am using .NET async send method (SendAsync) from Socket class. Do I need
Using .NET 4+ Is there any way to find all the methods that are
Using .Net 4.0. I have a some code which tries to open a connection
I am using .NET 2.0. How can I iterate through all controls of a
Using .NET, I would like to programmatically get a list of all the groups
Using .NET, I have a requirement in which I need to execute a process
I'm using Net::FTP to transfer files up to a mainframe and I'm testing failure
NOTE: Using .NET 2.0, and VS2005 as IDE Hello all, I'm working on logging

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.