Displaying 1 result from an estimated 1 matches for "file499a5987".
2012 Mar 08
2
Cannot change location of tempdir()
...session:
> Sys.getenv("TMP")
[1] "C:\\Users\\skoiejo\\AppData\\Local\\Temp"
> Sys.setenv(TMP = "e:\\Temp\\Rtmp")
> Sys.getenv("TMP")
[1] "e:\\Temp\\Rtmp"
> tempfile()
[1] "C:\\Users\\skoiejo\\AppData\\Local\\Temp\\Rtmp2tvQ7U\\file499a5987"
# I have also tried to change "TMPDIR", "TEMP" and "R_USER", all with
the same result.
# The directory is writable:
> write("some text", file = paste(Sys.getenv("TMP"),"test.txt",sep = ""))
> list.files(Sys.getenv...