The base R API for file and directory manipulation is idiosyncratic, and scattered over multiple packages. This package provide an API with:
- consistent input arguments and return values
- wrappers for common tasks that are currently painful
Functions are named according to their unix equivalents (except for ls
, which has a different meaning in R). Generally favour a smaller set of function with not too many number of options. But there's no need to capture all options from equivalent command line tools, and generally long argument names are preferred to cryptic abbreviations.