Re: [R] listing files recursively

2010-08-30 Thread Phil Spector
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 Statist

Re: [R] listing files recursively

2010-08-30 Thread Joshua Wiley
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 wrote: > Hi, all > > how to get all filenames in a directory and its all subdirectories? > > something like > filenames <- c(Sys.glob('/path/to/directory/*'), >

[R] listing files recursively

2010-08-30 Thread Hyunchul Kim
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]] _