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
______________________________________________
[email protected] 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.