Closed sengle01 closed 8 years ago
The location of the temporary folders is determined in Python by a global variable: tempfile.tempdir. LEMON does not set it, so all the functions of the tempfile
module search a standard list of directories and set the temporary directory to the first one in which the user can create files. The list is:
C:\TEMP
, C:\TMP
, \TEMP
, and \TMP
, in that order./tmp
, /var/tmp
, and /usr/tmp
, in that order.Thus, you could add something like this line to your .bashrc
file:
export TMPDIR=/data/tmp/
Oh perfect. Thank you so much for the quick response.
Best, Scott
Hello,
Here's what I'm assuming would be an easy one, but in looking over some of the routines, I didn't readily see an option for it. How would I go about changing the location of the temp folder used by Lemon?
Best, Scott