[R] How to get a list of subdirectories in the wd?

Nevil Amos nevil.amos at gmail.com
Wed Jun 2 04:06:40 CEST 2010


How do I get a list of subdirectories only, not files, in a directory


dir.create("test")
setwd("test")
dir.create("adir")
dir.create("bdir")
file.create("afile")
dir()

returns [1] "adir"  "afile" "bdir"

in need to return [1] "adir"  "bdir"

cheers

Nevil Amos



More information about the R-help mailing list