To get the location of temporary directory we can use the System.getProperty(String)
method and pass a property key "java.io.tmpdir"
as the argument to the method.
package org.kodejava.lang;
public class TempDirExample {
public static void main(String[] args) {
// This is the property name for accessing OS temporary directory
// or folder.
String property = "java.io.tmpdir";
// Get the temporary directory and print it.
String tempDir = System.getProperty(property);
System.out.println("OS temporary directory is " + tempDir);
}
}
The output of code snippet above is:
OS temporary directory is C:\Users\wsaryada\AppData\Local\Temp\
Latest posts by Wayan (see all)
- How do I use the LongToDoubleFunction functional interface in Java? - March 15, 2025
- How do I use the LongSupplier functional interface in Java? - March 14, 2025
- How do I use the LongPredicate functional interface in Java? - March 14, 2025
Thanks