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 create a string of repeated characters? - September 1, 2023
- How do I convert datetime string with optional part to a date object? - August 28, 2023
- How do I split large excel file into multiple smaller files? - April 15, 2023
Thanks