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

Today i was asked this question about sharing data from a thread t1 that
I was asked about this question. I can only think of a O(nm) algorithm
I've been asked this question about distributed source control in general by someone who's
So the other day, I asked this question about how to combine three complex
In an earlier question I asked about sanitizing postal street addresses, one of the
In another question - Getting directory listing from SVN for use in ANT dropdown
I was asked this question in an interview. Although the interview was for dot
This question was asked on Super User but I didn't get any response so
I recently asked this question , but after some of the responses and some
Please forgive me, but I do know js basics and how to write/call a

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.