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

mkdirsAwait

suspend fun FileSystem.mkdirsAwait(path: String): Unit

Create the directory represented by path and any non existent parents, asynchronously.

Parameters

path - path to the file

handler - the handler that will be called on completion

Returna
reference to this, so the API can be used fluently *

suspend fun FileSystem.mkdirsAwait(path: String, perms: String): Unit

Create the directory represented by path and any non existent parents, asynchronously.

Parameters

path - path to the file

perms - the permissions string

handler - the handler that will be called on completion

Returna
reference to this, so the API can be used fluently *