Bhail
Bhail

Reputation: 407

How to permanently set fix my working dir?

Every time I restart R I issue the following command:

setwd("C:/Users/avtarsingh/Downloads")

How do make this my permanent working dir

Upvotes: 0

Views: 640

Answers (3)

Sara
Sara

Reputation: 21

In order to change your working directory permanently, you can find the following file “Rprofile.site” that is located in your installation path “etc” folder and open it in your favorite text editor (i.e., VSCode). Then you can add your permeant working directory to the first line, like the following line of code: setwd(“C:\your permeant working directory”) and save it. Next time you open the R-CRAN, your working directory is set to what you have saved.

Upvotes: 2

CSJCampbell
CSJCampbell

Reputation: 2115

Any code which you wish to run every R session can be added to Rprofile.site.

On a Windows machine, this file is located for example in C:\Program Files\R\R-3.1.2\etc. On Windows you will need to run your favourite text editor as an administrator to make changes to this file, since it is in Program Files.

This is also a good place to set your local CRAN repository, etc.

Upvotes: 1

Stedy
Stedy

Reputation: 7469

Create a file called ".Rprofile" and add that command. R will look for this file every time it starts and change to that directory accordingly. More info in the R documentation here

Upvotes: 5

Related Questions