vertx / io.vertx.kotlin.core.file / io.vertx.core.file.FileSystem / createTempFileAwait

createTempFileAwait

suspend fun FileSystem.createTempFileAwait(prefix: String, suffix: String): String

Suspending version of method io.vertx.core.file.FileSystem.createTempFile

Parameters

prefix - the prefix string to be used in generating the directory's name; may be null

suffix - the suffix string to be used in generating the file's name; may be null, in which case ".tmp" is used

Return

String

NOTE: This function has been automatically generated from io.vertx.core.file.FileSystem using Vert.x codegen.

suspend fun FileSystem.createTempFileAwait(prefix: String, suffix: String, perms: String): String

Suspending version of method io.vertx.core.file.FileSystem.createTempFile

Parameters

prefix - the prefix string to be used in generating the directory's name; may be null

suffix - the suffix string to be used in generating the file's name; may be null, in which case ".tmp" is used

perms -

Return

String

NOTE: This function has been automatically generated from io.vertx.core.file.FileSystem using Vert.x codegen.

suspend fun FileSystem.createTempFileAwait(dir: String, prefix: String, suffix: String, perms: String): String

Suspending version of method io.vertx.core.file.FileSystem.createTempFile

Parameters

dir - the path to directory in which to create the directory

prefix - the prefix string to be used in generating the directory's name; may be null

suffix - the suffix string to be used in generating the file's name; may be null, in which case ".tmp" is used

perms - the permissions string

Return

String

NOTE: This function has been automatically generated from io.vertx.core.file.FileSystem using Vert.x codegen.