On Tue, Aug 16, 2011 at 11:17 PM, Jonathan Malmaud <malm...@gmail.com> wrote:
> Hi,
> My R package has files in the 'inst' directory that it needs to reference. 
> How can the R scripts in my package find out the full path to the 'inst' 
> directory after the package is installed, given that different users may have 
> installed the package to different libraries?


The inst directory does not exists after installation (this is
described in R-exts).  Use something like
   system.file("extdata", package = "MyPackage")
to locate a directory etc.

Kasper



>
> Thanks,
> Jon Malmaud
> ______________________________________________
> R-devel@r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-devel
>

______________________________________________
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel

Reply via email to