Package | Description |
---|---|
io.vertx.core.file | |
io.vertx.reactivex.core.file | |
io.vertx.rxjava.core.file |
Modifier and Type | Method and Description |
---|---|
CopyOptions |
CopyOptions.setAtomicMove(boolean atomicMove)
Whether move should be performed as an atomic filesystem operation.
|
CopyOptions |
CopyOptions.setCopyAttributes(boolean copyAttributes)
Whether the file attributes should be copied.
|
CopyOptions |
CopyOptions.setNofollowLinks(boolean nofollowLinks)
Whether symbolic links should not be followed during copy or move operations.
|
CopyOptions |
CopyOptions.setReplaceExisting(boolean replaceExisting)
Whether an existing file, empty directory, or link should be replaced.
|
Modifier and Type | Method and Description |
---|---|
Future<Void> |
FileSystem.copy(String from,
String to,
CopyOptions options)
Like
FileSystem.copy(String, String, CopyOptions, Handler) but returns a Future of the asynchronous result |
FileSystem |
FileSystem.copy(String from,
String to,
CopyOptions options,
Handler<AsyncResult<Void>> handler)
Copy a file from the path
from to path to , asynchronously. |
Future<Void> |
FileSystem.move(String from,
String to,
CopyOptions options)
Like
FileSystem.move(String, String, CopyOptions, Handler) but returns a Future of the asynchronous result |
FileSystem |
FileSystem.move(String from,
String to,
CopyOptions options,
Handler<AsyncResult<Void>> handler)
Move a file from the path
from to path to , asynchronously. |
Constructor and Description |
---|
CopyOptions(CopyOptions other)
Copy constructor.
|
Modifier and Type | Method and Description |
---|---|
FileSystem |
FileSystem.copy(String from,
String to,
CopyOptions options)
Copy a file from the path
from to path to , asynchronously. |
FileSystem |
FileSystem.copy(String from,
String to,
CopyOptions options,
Handler<AsyncResult<Void>> handler)
Copy a file from the path
from to path to , asynchronously. |
FileSystem |
FileSystem.move(String from,
String to,
CopyOptions options)
Move a file from the path
from to path to , asynchronously. |
FileSystem |
FileSystem.move(String from,
String to,
CopyOptions options,
Handler<AsyncResult<Void>> handler)
Move a file from the path
from to path to , asynchronously. |
Completable |
FileSystem.rxCopy(String from,
String to,
CopyOptions options)
Copy a file from the path
from to path to , asynchronously. |
Completable |
FileSystem.rxMove(String from,
String to,
CopyOptions options)
Move a file from the path
from to path to , asynchronously. |
Modifier and Type | Method and Description |
---|---|
FileSystem |
FileSystem.copy(String from,
String to,
CopyOptions options)
Copy a file from the path
from to path to , asynchronously. |
FileSystem |
FileSystem.copy(String from,
String to,
CopyOptions options,
Handler<AsyncResult<Void>> handler)
Copy a file from the path
from to path to , asynchronously. |
FileSystem |
FileSystem.move(String from,
String to,
CopyOptions options)
Move a file from the path
from to path to , asynchronously. |
FileSystem |
FileSystem.move(String from,
String to,
CopyOptions options,
Handler<AsyncResult<Void>> handler)
Move a file from the path
from to path to , asynchronously. |
Single<Void> |
FileSystem.rxCopy(String from,
String to,
CopyOptions options)
Copy a file from the path
from to path to , asynchronously. |
Single<Void> |
FileSystem.rxMove(String from,
String to,
CopyOptions options)
Move a file from the path
from to path to , asynchronously. |
Copyright © 2021 Eclipse. All rights reserved.