vertx / io.vertx.rxjava.core.file / FileSystem / rxCopyRecursive

rxCopyRecursive

open fun rxCopyRecursive(from: String, to: String, recursive: Boolean): Single<Void>

Copy a file from the path from to path to, asynchronously.

If recursive is true and from represents a directory, then the directory and its contents will be copied recursively to the destination to.

The copy will fail if the destination if the destination already exists.

Parameters

from - the path to copy from

to - the path to copy to

recursive -

Return