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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T14:52:09+00:00 2026-05-19T14:52:09+00:00

This Question asked about listing directories (not files) in the current directory. I noted

  • 0

This Question asked about listing directories (not files) in the current directory. I noted in a comment to one of the answers that we can’t use the recursive argument of functions like dir and list.files to recursively list directories in the current directory.

The obvious solution to this is to write a recursive function that lists the directories in the current directory that calls itself on each of those directories in turn, and so on, adding to the overall list of directories that gets returned at the end of the recursion.

The Recall() function would seem the ideal candidate for this, but I’ve never really got my head round how one writes a recursive function that adds to the final output each time it is called.

How would one modify this function:

list.dirs <- function(path) {
    x <- dir(path, full.names = TRUE)
    dnames <- x[file_test("-d", x)]
    dnames
}

To have it descend recursively through the directories in dnames adding any directories it finds to a list of all directories found within the dnames directories, and so on…?

  • 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-19T14:52:10+00:00Added an answer on May 19, 2026 at 2:52 pm

    Here is one way:

    list.dirs <- function(path) {
         x <- dir(path, full.names = TRUE)
         dnames <- x[file_test("-d", x)]
        tmp <- character(0)
        for(i in seq_along(dnames) ) {
            tmp <- c(tmp, Recall(dnames[i]) )
        }
         c(dnames,tmp)
     } 
    

    This just tacks the subdirectories onto the end, some different logic could be used to give a different ordering.

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

Sidebar

Related Questions

I have asked this question about using the a Linq method that returns one
This question completes the first one that I asked here about how to change
Last week user Masse asked a question about recursively listing files in a directory
I had asked one question about this error before ( Android StackOverflowError in ViewGroup.resetResolvedTextDirection
I know this question has been asked about a dozen times, but this one
I'm surprised that not more has been asked about this :-) My app is
This is related to this question I asked earlier about syntax highlighting user-defined blocks
Note: I originally asked this question about an hour ago but only recently realized
This stems from a previous question I asked - about a write conflict with
This is a follow up question to a previous question I asked about calculating

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.