suspend fun FileSystem.createTempFileAwait(prefix: String, suffix: String): String
Suspending version of method io.vertx.core.file.FileSystem.createTempFile
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
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
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
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
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
NOTE: This function has been automatically generated from io.vertx.core.file.FileSystem using Vert.x codegen.