vertx / io.vertx.reactivex.core.file / FileSystem / rxMkdirs

rxMkdirs

open fun rxMkdirs(path: String): Completable

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

The operation will fail if the directory already exists.

Parameters

path - path to the file

Return

open fun rxMkdirs(path: String, perms: String): Completable

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

The new directory will be created with permissions as specified by perms.

The permission String takes the form rwxr-x--- as specified in here.

The operation will fail if the directory already exists.

Parameters

path - path to the file

perms - the permissions string

Return