On Mon, Sep 23, 2013 at 2:55 PM, Jose Claudio Faria <joseclaudio.fa...@gmail.com> wrote: > trPaths <- paste(paste(Sys.getenv('APPDATA'), > '\\Tinn-R\\tmp\\', > sep=''), > c('', > 'search.txt', > 'objects.txt', > 'file.r', > 'selection.r', > 'block.r', > 'lines.r', > 'reformat-input.r', > 'reformat-output.r'), > sep='') >
Try this: trPaths <- file.path( Sys.getenv('APPDATA'), 'Tinn-R', 'tmp', c('', 'search.txt', 'objects.txt', 'file.r', 'selection.r', 'block.r', 'lines.r', 'reformat-input.r', 'reformat-output.r'), fsep = '\\') -- Statistics & Software Consulting GKX Group, GKX Associates Inc. tel: 1-877-GKX-GROUP email: ggrothendieck at gmail.com ______________________________________________ R-help@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.