Package | Description |
---|---|
viptool.filesystem |
Modifier and Type | Method and Description |
---|---|
void |
IFileSystemSession.changeFolder(String path)
Changes the current working folder to the given folder.
|
void |
IFileSystemSession.createFile(String name,
Object content)
Creates a file with the given name and the given content.
|
void |
IFileSystem.createFile(String file,
Object content)
Creates the given file with the given content.
|
Object |
IFileSystemSession.getFile(String name)
Returns the content of the file with the given name.
|
Object |
IFileSystem.getFile(String file)
Returns the content of the file with the given name.
|
String[] |
IFileSystemSession.getFolderContent(String folder)
Returns the content of a folder as an array of strings.
|
String[] |
IFileSystem.getFolderContent(String folder)
Returns the content of a folder as an array of strings.
|
Iterator |
IFileSystemSession.getFolderIterator(String folder)
Returns an iterator for walking through the folders content.
|
Iterator |
IFileSystem.getFolderIterator(String folder)
Returns an iterator for walking through the folders content.
|
void |
IFileSystemSession.moveFile(String source,
String destination)
Moves the given file to the given destination.
|
void |
IFileSystem.moveFile(String source,
String destination)
Moves the given file to the given destination.
|
void |
IFileSystemSession.removeFile(String name)
Removes the file with the name relative to the current working folder, if
the file does not start with /.
|
void |
IFileSystem.removeFile(String file)
Removes the given file from the file system.
|
void |
IFileSystemSession.removeFolder(String name)
Removes the folder with the given name.
|
void |
IFileSystem.removeFolder(String folder)
Removes the given folder from the file system.
|