R - list files recursively in specific subdirectories











up vote
1
down vote

favorite












I am trying to list files that are organized as following:



/Volumes/Macintosh HD 2/data/cmip5/historical/

----clt
-----------------------file1.txt
-----------------------file2.txt
---------------models
-----------------------file1.txt
-----------------------file2.txt

----hurs
-----------------------file1.txt
-----------------------file2.txt
---------------models
-----------------------file1.txt
-----------------------file2.txt

----precip
-----------------------file1.txt
-----------------------file2.txt
---------------models
-----------------------file1.txt
-----------------------file2.txt

----temp
-----------------------file1.txt
-----------------------file2.txt
---------------models
-----------------------file1.txt
-----------------------file2.txt

----wind
-----------------------file1.txt
-----------------------file2.txt
---------------models
-----------------------file1.txt
-----------------------file2.txt


What I would like to do is list, in one single list, all files contained in the subdirectories "models".



What I tried, and did not work, was this command:



> Sys.glob(file.path('/Volumes/Macintosh HD 2/data/cmip5/historical/', "models","*.txt"))
character(0)


Is there any straighforward way to achieve this with R?










share|improve this question
























  • list.files('./path/to/historical', recursive = TRUE)
    – rawr
    Jun 3 '15 at 3:36












  • @rawr it doesn't work because I need to list only the files in the subdirectories models
    – thiagoveloso
    Jun 3 '15 at 3:40










  • so then ?grep
    – rawr
    Jun 3 '15 at 4:12















up vote
1
down vote

favorite












I am trying to list files that are organized as following:



/Volumes/Macintosh HD 2/data/cmip5/historical/

----clt
-----------------------file1.txt
-----------------------file2.txt
---------------models
-----------------------file1.txt
-----------------------file2.txt

----hurs
-----------------------file1.txt
-----------------------file2.txt
---------------models
-----------------------file1.txt
-----------------------file2.txt

----precip
-----------------------file1.txt
-----------------------file2.txt
---------------models
-----------------------file1.txt
-----------------------file2.txt

----temp
-----------------------file1.txt
-----------------------file2.txt
---------------models
-----------------------file1.txt
-----------------------file2.txt

----wind
-----------------------file1.txt
-----------------------file2.txt
---------------models
-----------------------file1.txt
-----------------------file2.txt


What I would like to do is list, in one single list, all files contained in the subdirectories "models".



What I tried, and did not work, was this command:



> Sys.glob(file.path('/Volumes/Macintosh HD 2/data/cmip5/historical/', "models","*.txt"))
character(0)


Is there any straighforward way to achieve this with R?










share|improve this question
























  • list.files('./path/to/historical', recursive = TRUE)
    – rawr
    Jun 3 '15 at 3:36












  • @rawr it doesn't work because I need to list only the files in the subdirectories models
    – thiagoveloso
    Jun 3 '15 at 3:40










  • so then ?grep
    – rawr
    Jun 3 '15 at 4:12













up vote
1
down vote

favorite









up vote
1
down vote

favorite











I am trying to list files that are organized as following:



/Volumes/Macintosh HD 2/data/cmip5/historical/

----clt
-----------------------file1.txt
-----------------------file2.txt
---------------models
-----------------------file1.txt
-----------------------file2.txt

----hurs
-----------------------file1.txt
-----------------------file2.txt
---------------models
-----------------------file1.txt
-----------------------file2.txt

----precip
-----------------------file1.txt
-----------------------file2.txt
---------------models
-----------------------file1.txt
-----------------------file2.txt

----temp
-----------------------file1.txt
-----------------------file2.txt
---------------models
-----------------------file1.txt
-----------------------file2.txt

----wind
-----------------------file1.txt
-----------------------file2.txt
---------------models
-----------------------file1.txt
-----------------------file2.txt


What I would like to do is list, in one single list, all files contained in the subdirectories "models".



What I tried, and did not work, was this command:



> Sys.glob(file.path('/Volumes/Macintosh HD 2/data/cmip5/historical/', "models","*.txt"))
character(0)


Is there any straighforward way to achieve this with R?










share|improve this question















I am trying to list files that are organized as following:



/Volumes/Macintosh HD 2/data/cmip5/historical/

----clt
-----------------------file1.txt
-----------------------file2.txt
---------------models
-----------------------file1.txt
-----------------------file2.txt

----hurs
-----------------------file1.txt
-----------------------file2.txt
---------------models
-----------------------file1.txt
-----------------------file2.txt

----precip
-----------------------file1.txt
-----------------------file2.txt
---------------models
-----------------------file1.txt
-----------------------file2.txt

----temp
-----------------------file1.txt
-----------------------file2.txt
---------------models
-----------------------file1.txt
-----------------------file2.txt

----wind
-----------------------file1.txt
-----------------------file2.txt
---------------models
-----------------------file1.txt
-----------------------file2.txt


What I would like to do is list, in one single list, all files contained in the subdirectories "models".



What I tried, and did not work, was this command:



> Sys.glob(file.path('/Volumes/Macintosh HD 2/data/cmip5/historical/', "models","*.txt"))
character(0)


Is there any straighforward way to achieve this with R?







r list file subdirectory






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 22 at 3:51









Cœur

17.1k9102140




17.1k9102140










asked Jun 3 '15 at 3:24









thiagoveloso

8321122




8321122












  • list.files('./path/to/historical', recursive = TRUE)
    – rawr
    Jun 3 '15 at 3:36












  • @rawr it doesn't work because I need to list only the files in the subdirectories models
    – thiagoveloso
    Jun 3 '15 at 3:40










  • so then ?grep
    – rawr
    Jun 3 '15 at 4:12


















  • list.files('./path/to/historical', recursive = TRUE)
    – rawr
    Jun 3 '15 at 3:36












  • @rawr it doesn't work because I need to list only the files in the subdirectories models
    – thiagoveloso
    Jun 3 '15 at 3:40










  • so then ?grep
    – rawr
    Jun 3 '15 at 4:12
















list.files('./path/to/historical', recursive = TRUE)
– rawr
Jun 3 '15 at 3:36






list.files('./path/to/historical', recursive = TRUE)
– rawr
Jun 3 '15 at 3:36














@rawr it doesn't work because I need to list only the files in the subdirectories models
– thiagoveloso
Jun 3 '15 at 3:40




@rawr it doesn't work because I need to list only the files in the subdirectories models
– thiagoveloso
Jun 3 '15 at 3:40












so then ?grep
– rawr
Jun 3 '15 at 4:12




so then ?grep
– rawr
Jun 3 '15 at 4:12












1 Answer
1






active

oldest

votes

















up vote
1
down vote













Turns out that it was way easier than I thought:



Sys.glob('/Volumes/Macintosh HD 2/data/cmip5/historical/*/models/*.txt')


It seems like it is impossible to find something R can not do.






share|improve this answer





















    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f30610292%2fr-list-files-recursively-in-specific-subdirectories%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    1
    down vote













    Turns out that it was way easier than I thought:



    Sys.glob('/Volumes/Macintosh HD 2/data/cmip5/historical/*/models/*.txt')


    It seems like it is impossible to find something R can not do.






    share|improve this answer

























      up vote
      1
      down vote













      Turns out that it was way easier than I thought:



      Sys.glob('/Volumes/Macintosh HD 2/data/cmip5/historical/*/models/*.txt')


      It seems like it is impossible to find something R can not do.






      share|improve this answer























        up vote
        1
        down vote










        up vote
        1
        down vote









        Turns out that it was way easier than I thought:



        Sys.glob('/Volumes/Macintosh HD 2/data/cmip5/historical/*/models/*.txt')


        It seems like it is impossible to find something R can not do.






        share|improve this answer












        Turns out that it was way easier than I thought:



        Sys.glob('/Volumes/Macintosh HD 2/data/cmip5/historical/*/models/*.txt')


        It seems like it is impossible to find something R can not do.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jun 3 '15 at 4:37









        thiagoveloso

        8321122




        8321122






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f30610292%2fr-list-files-recursively-in-specific-subdirectories%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Trompette piccolo

            Slow SSRS Report in dynamic grouping and multiple parameters

            Simon Yates (cyclisme)