Java Temp Directory Get getTempDirectoryPathString()

Here you can find the source of getTempDirectoryPathString()

Description

Getting a string object of the temporal directory which is referrenced by System.getProperty("java.io.tmpdir") .

License

Open Source License

Declaration

public static String getTempDirectoryPathString() 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    /**//from   w ww .  java2s .c o m
     * Getting a string object of the temporal directory which is referrenced by
     * {@code System.getProperty("java.io.tmpdir")}.
     *
     * @return
     */
    public static String getTempDirectoryPathString() {
        return System.getProperty("java.io.tmpdir");
    }
}

Related

  1. getTempDirectory()
  2. getTempDirectory()
  3. getTempDirectory(Class c)
  4. getTempDirectory(String applicationName)
  5. getTempDirectoryPath()
  6. getTempDirectoryStr()
  7. getTempDirFile()
  8. getTempDirFilePath(String name)
  9. getTempDirName()