When does System.getProperty("java.io.tmpdir") return "c:\temp"
Asked Answered
B

4

123

Just curious as to when System.getProperty("java.io.tmpdir") returns "c:\temp". According to the java.io.File Java Docs-

The default temporary-file directory is specified by the system property java.io.tmpdir. On UNIX systems the default value of this property is typically "/tmp" or "/var/tmp"; on Microsoft Windows systems it is typically "c:\temp". A different value may be given to this system property when the Java virtual machine is invoked, but programmatic changes to this property are not guaranteed to have any effect upon the the temporary directory used by this method.

But in my case-

System.out.println(System.getProperty("java.io.tmpdir"));

Always returns-

C:\Users\admin\AppData\Local\Temp\ i.e. %TEMP%

In what conditions will it return "c:\temp"?

EDITED: If I change %TEMP% to C:\Temp then I will get C:\Temp, right? But the documentation shows c:\Temp instead of C:\Temp.

Bik answered 3/5, 2013 at 5:40 Comment(9)
en.wikipedia.org/wiki/Temporary_folder Looking at the wiki, I'd say you can make it C:\Temp by changing %TEMP%, installing Windows 98 or passing it to java -Djava.io.tmpdir=C:\Temp. Also check out this: #3437595Ordinarily
@Max Thanks MAX. If I change %TEMP% to C:\Temp then I will get C:\Temp. Right? but doc show c:\Temp instead of C:\Temp. :)Bik
i dont know why the drive letter matters with your application ?Stove
@AshishPancholi didnt get you there ?Stove
The 1.4.2 Javadoc you are linking to is outdated. The current 7 Javadoc mentions a "typical" directory of "C:\\WINNT\\TEMP".Din
To add to @Max's answer, c:\Temp was the default in Windows 9x.Mathewmathews
Java 8 evaluates the environment variable %TMP% in Windows, not %TEMP%Dys
Notice that it returns a trailing slash. Anyone knows what it returns on unix, and if it also has a trailing slash?Reeba
For what it's worth, I get C:\Users\AL\AppData\Local\Temp\Upperclassman
B
142

In MS Windows the temporary directory is set by the environment variable TEMP. In XP, the temporary directory was set per-user as Local Settings\Temp.

If you change your TEMP environment variable to C:\temp, then you get the same when you run :

System.out.println(System.getProperty("java.io.tmpdir"));

Buckman answered 3/5, 2013 at 5:50 Comment(2)
On Windows there is a second environment variable called %TMP% and it is this which is sometimes used, not %TEMP%, for example the GWT plugin for Eclipse uses the %TMP% variable.Prepossess
@Joshi : Your answer is quite accurate. However, I disagree with the example you gave : If the user set the TMP env var, then the TEMP will be ignored. Please, refer to my answer and let me know if you didn't understood what I mean.Frager
P
42

If you set

-Djava.io.tmpdir=C:\temp
Propolis answered 3/5, 2013 at 5:47 Comment(1)
Windows file names are not case sensitive.Propolis
F
40

On the one hand, when you call System.getProperty("java.io.tmpdir") instruction, Java calls the Win32 API's function GetTempPath. According to the MSDN :

The GetTempPath function checks for the existence of environment variables in the following order and uses the first path found:

  1. The path specified by the TMP environment variable.
  2. The path specified by the TEMP environment variable.
  3. The path specified by the USERPROFILE environment variable.
  4. The Windows directory.

On the other hand, please check the historical reasons on why TMP and TEMP coexist. It's really worth reading.

Frager answered 18/4, 2015 at 11:40 Comment(0)
W
0

Value of %TEMP% environment variable is often user-specific and Windows sets it up with regard to currently logged in user account. Some user accounts may have no user profile, for example when your process runs as a service on SYSTEM, LOCALSYSTEM or other built-in account, or is invoked by IIS application with AppPool identity with Create user profile option disabled. So even when you do not overwrite %TEMP% variable explicitly, Windows may use c:\temp or even c:\windows\temp folders for, lets say, non-usual user accounts. And what's more important, process might have no access rights to this directory!

Wiser answered 27/10, 2016 at 11:36 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.