Package | Description |
---|---|
nl.esciencecenter.xenon.files |
This package contains classes and interfaces for manipulating files.
|
nl.esciencecenter.xenon.util |
This package is contains several utility classes.
|
Modifier and Type | Method and Description |
---|---|
static CopyOption |
CopyOption.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CopyOption[] |
CopyOption.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static boolean |
CopyOption.contains(CopyOption toFind,
CopyOption... options)
Check if a sequence of
CopyOption s contains a specific option. |
static boolean |
CopyOption.contains(CopyOption toFind,
CopyOption... options)
Check if a sequence of
CopyOption s contains a specific option. |
Copy |
Files.copy(Path source,
Path target,
CopyOption... options)
Copy an existing source file or symbolic link to a target file.
|
Modifier and Type | Method and Description |
---|---|
void |
Sandbox.download(CopyOption... options)
Download files from sandbox.
|
static void |
Utils.recursiveCopy(Files files,
Path source,
Path target,
CopyOption... options)
Recursively copies directories, files and symbolic links from source to target.
|
void |
Sandbox.upload(CopyOption... options)
Upload files to sandbox.
|