open fun move(from: String, to: String, handler: Handler<AsyncResult<Void>>): FileSystem
Move a file from the path from to path to, asynchronously.
The move will fail if the destination already exists.
handler - the handler that will be called on completion
Return
a reference to this, so the API can be used fluently
open fun move(from: String, to: String, options: CopyOptions, handler: Handler<AsyncResult<Void>>): FileSystem
Move a file from the path from to path to, asynchronously.
options - options describing how the file should be copied
handler - the handler that will be called on completion
Return
a reference to this, so the API can be used fluently