Ok, here we go:
Look for a line like this: (should be line number 59
Quotetmpdir = mkdtemp()
and change the line to this: (change the bold part and keep the ' before and after the path)
Quotetmpdir = mkdtemp(dir='C:\Path\to\whatever')
That's it and should work for windows too, but I could not test it, I have only Mac and Linux available.
-
1
Recommended Posts
Smithy 1,141
It is easy and I can do it for you later today.
There is a function in the code which returns the path and name of the directory. So the python code/function uses a system call to get the temp directory of your system including a temporary/random filename.
I can look into it a little bit later, have to get breakfast first (Austria) ?
Link to post
Share on other sites