Borrar filtros
Borrar filtros

How to permanently change the temp directory matlab uses?

30 visualizaciones (últimos 30 días)
Theo
Theo el 25 de Sept. de 2014
Comentada: Atriya Biswas el 3 de Feb. de 2020
I saw the following in another post for changing the temp directory. However I believe everytime Matlab restarts the TEMP directory is reset to the c:\temp folder.
tempdir
clear all
setenv('TEMP','NEW_DIRECTORY_PATH') % TEMP for Windows
tempdir
I am running out of space in C:. I should move the temp folder permanently to another drive. Can anyone give me a suggestion? Thanks

Respuesta aceptada

José-Luis
José-Luis el 25 de Sept. de 2014

Más respuestas (1)

Thomas Richards
Thomas Richards el 22 de Feb. de 2018
This does not work for me. when I use setenv(), the ouput of tempdir is unchanged. I have tried this on my desktop using Matlab and I am also trying to use this on a linux cluster, so changing admin rights etc is not really an option.
K>> tempdir
ans =
'C:\Users\bs11t2r\AppData\Local\Temp\'
K>> setenv('TEMP', 'C:\Somewhereelse\') K>> tempdir
ans =
'C:\Users\bs11t2r\AppData\Local\Temp\'
  3 comentarios
Lucas Bruck
Lucas Bruck el 13 de Jul. de 2018
Editada: Lucas Bruck el 13 de Jul. de 2018
Try to use 'TMP' or 'tmp' instead of 'TEMP', I am using a Linux cluster too and it worked for me. The code became:
tempdir
clear all
setenv('TMP','NEW_DIRECTORY_PATH') % TEMP for Windows
tempdir
Atriya Biswas
Atriya Biswas el 3 de Feb. de 2020
Thanks Lucas!!!
>> clear('tempdir')
>> setenv('tmp','D:\Matlab_temp\')
then type
>> tempdir
Matlab Yields
ans =
'D:\Matlab_temp\'
This is implemented in 2019b version

Iniciar sesión para comentar.

Categorías

Más información sobre File Name Construction en Help Center y File Exchange.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by