Ajay Ohri
2012-Jul-04 13:24 UTC
[R] how to get list of files within a particular local file folder
Dear List, Say I can use getwd() and setwd() to change my working directory. How can I read in all the files within that directory using command line (like a ls() but for the path specified) Regards Ajay Websites- Technology http://decisionstats.com On Wed, Jul 4, 2012 at 3:30 PM, <r-help-request@r-project.org> wrote:> r-help@r-project.org[[alternative HTML version deleted]]
Ajay Ohri
2012-Jul-04 13:24 UTC
[R] how to get list of files within a particular local file folder
Dear List, Say I can use getwd() and setwd() to change my working directory. How can I read in all the files within that directory using command line (like a ls() but for the path specified) Regards Ajay Websites- Technology http://decisionstats.com [[alternative HTML version deleted]]
Michael Weylandt
2012-Jul-04 13:51 UTC
[R] how to get list of files within a particular local file folder
Either dir() or list.files() Michael On Jul 4, 2012, at 8:24 AM, Ajay Ohri <ohri2007 at gmail.com> wrote:> Dear List, > > Say I can use getwd() and setwd() to change my working directory. How can I > read in all the files within that directory using command line (like a ls() > but for the path specified) > > Regards > > Ajay > > Websites- > Technology > http://decisionstats.com > > [[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.
Jeff Newmiller
2012-Jul-04 13:51 UTC
[R] how to get list of files within a particular local file folder
How you "read all ... files" is up to you, as that depends both on the type of data contained in the files and on how you plan to use the data. Most likely the solution will involve using the files.list function and either lapply or a for loop, and the data will end up stored in a list of data objects. (If the data are tabular you might use the sapply function to create a single data table.) --------------------------------------------------------------------------- Jeff Newmiller The ..... ..... Go Live... DCN:<jdnewmil at dcn.davis.ca.us> Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar/Batteries O.O#. #.O#. with /Software/Embedded Controllers) .OO#. .OO#. rocks...1k --------------------------------------------------------------------------- Sent from my phone. Please excuse my brevity. Ajay Ohri <ohri2007 at gmail.com> wrote:>Dear List, > >Say I can use getwd() and setwd() to change my working directory. How >can I >read in all the files within that directory using command line (like a >ls() >but for the path specified) > >Regards > >Ajay > >Websites- >Technology >http://decisionstats.com > > [[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.
peter dalgaard
2012-Jul-04 13:56 UTC
[R] how to get list of files within a particular local file folder
On Jul 4, 2012, at 15:24 , Ajay Ohri wrote:> Dear List, > > Say I can use getwd() and setwd() to change my working directory. How can I > read in all the files within that directory using command line (like a ls() > but for the path specified)Something like all <- lapply(list.files(), read.table) ? -pd> > Regards > > Ajay > > Websites- > Technology > http://decisionstats.com > > [[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.-- Peter Dalgaard, Professor Center for Statistics, Copenhagen Business School Solbjerg Plads 3, 2000 Frederiksberg, Denmark Phone: (+45)38153501 Email: pd.mes at cbs.dk Priv: PDalgd at gmail.com