Possible Duplicate:
Rscript: Determine path of the executing script

Always I run an R script, it take My Documents as working directory.

When I run the script, I want to get the script path and change the working directory to it. How I can do this?

I want this to run the scripts in same folder with the source() function.

link|improve this question

If you use ESS there's a macro to do this. Probably for other editors too. – baptiste Nov 10 '11 at 23:24
1  
Perhaps: args <- commandArgs(trailingOnly = F) ; scriptPath <- dirname(sub("--file=","",args[grep("--file",args)])) From one of the answers in the above cited SO link. – DWin Nov 10 '11 at 23:35
feedback

closed as exact duplicate by joran, Spacedman, csgillespie, BalusC, ChrisF Nov 11 '11 at 22:58

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 4 down vote accepted

if you run script by source, then try source(file, chdir = TRUE).

link|improve this answer
feedback

What the hex, I try putting it in as a solution:

args <- commandArgs(trailingOnly = F)
 scriptPath <- dirname(sub("--file=","",args[grep("--file",args)]))
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.