Hi, all how to get all filenames in a directory and its all subdirectories? something like filenames <- c(Sys.glob('/path/to/directory/*'), Sys.glob('/path/to/directory/*/*'), Sys.glob('/path/to/directory/*/*/*'), ...) Thanks in advance, Hyunchul [[alternative HTML version deleted]]
Hi, This should do it: list.files(path = "/your/path", recursive = TRUE) Cheers, Josh On Mon, Aug 30, 2010 at 8:01 AM, Hyunchul Kim <hyunchul.kim.sfc at gmail.com> wrote:> Hi, all > > how to get all filenames in a directory and its all subdirectories? > > something like > filenames <- c(Sys.glob('/path/to/directory/*'), > Sys.glob('/path/to/directory/*/*'), Sys.glob('/path/to/directory/*/*/*'), > ...) > > Thanks in advance, > > Hyunchul > > ? ? ? ?[[alternative HTML version deleted]] > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. >-- Joshua Wiley Ph.D. Student, Health Psychology University of California, Los Angeles http://www.joshuawiley.com/
Hyunchul - You don't have to rely on the operating system to provide information about the file system. Look at ?list.files For example, list.files('/path/to/directory',recursive=TRUE) - Phil Spector Statistical Computing Facility Department of Statistics UC Berkeley spector at stat.berkeley.edu On Tue, 31 Aug 2010, Hyunchul Kim wrote:> Hi, all > > how to get all filenames in a directory and its all subdirectories? > > something like > filenames <- c(Sys.glob('/path/to/directory/*'), > Sys.glob('/path/to/directory/*/*'), Sys.glob('/path/to/directory/*/*/*'), > ...) > > Thanks in advance, > > Hyunchul > > [[alternative HTML version deleted]] > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. >