W3cubDocs

/Kotlin

createTempFile

Platform and version requirements: JVM (1.0)
fun createTempFile(
    prefix: String = "tmp", 
    suffix: String? = null, 
    directory: File? = null
): File

Creates a new empty file 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 file.

© 2010–2019 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.io/create-temp-file.html