createTempDir

JVM
1.0
fun createTempDir(
    prefix: String = "tmp",
    suffix: String? = null,
    directory: File? = null
): File

Creates an empty directory in the specified directory, using the given prefix and suffix to generate its name.

If prefix is not specified then some unspecified name will be used. If suffix is not specified then ".tmp" will be used. If directory is not specified then the default temporary-file directory will be used.

Exceptions

IOException - in case of input/output error.

IllegalArgumentException - if prefix is shorter than three symbols.

Return a file object corresponding to a newly-created directory.