Modifier and Type | Method | Description |
---|---|---|
FileHandle |
ChangeRootFileSystemWrapperImpl.createFile(String aPath,
String aName) |
Creates a file (handle) with the given path and name.
|
FileHandle |
FileSystem.createFile(String aPath,
String aName) |
Creates a file (handle) with the given path and name.
|
FileHandle |
InMemoryFileSystemImpl.createFile(String aPath,
String aName) |
Creates a file (handle) with the given path and name.
|
FileHandle |
ChangeRootFileSystemWrapperImpl.getFileHandle(String aPath,
String aName) |
Gets a file (handle) with the given path and name from the file system.
|
FileHandle |
FileSystem.getFileHandle(String aPath,
String aName) |
Gets a file (handle) with the given path and name from the file system.
|
FileHandle |
InMemoryFileSystemImpl.getFileHandle(String aPath,
String aName) |
Gets a file (handle) with the given path and name from the file system.
|
List<FileHandle> |
ChangeRootFileSystemWrapperImpl.getFileHandles(String aPath,
boolean isRecursively) |
With the behavior of the
FileSystem.hasFiles(String, boolean) method, all
file (handle)s found for the path are returned. |
List<FileHandle> |
FileSystem.getFileHandles(String aPath,
boolean isRecursively) |
With the behavior of the
FileSystem.hasFiles(String, boolean) method, all
file (handle)s found for the path are returned. |
List<FileHandle> |
InMemoryFileSystemImpl.getFileHandles(String aPath,
boolean isRecursively) |
With the behavior of the
FileSystem.hasFiles(String, boolean) method, all
file (handle)s found for the path are returned. |
boolean |
ChangeRootFileSystemWrapperImpl.hasFile(String aPath,
String aName) |
Tests whether the file system knows a file (handle) with the given path
and name.
|
boolean |
FileSystem.hasFile(String aPath,
String aName) |
Tests whether the file system knows a file (handle) with the given path
and name.
|
boolean |
InMemoryFileSystemImpl.hasFile(String aPath,
String aName) |
Tests whether the file system knows a file (handle) with the given path
and name.
|
boolean |
ChangeRootFileSystemWrapperImpl.hasFiles(String aPath,
boolean isRecursively) |
Determines whether there is any file (handle)s found for the given path.
|
boolean |
FileSystem.hasFiles(String aPath,
boolean isRecursively) |
Determines whether there is any file (handle)s found for the given path.
|
boolean |
InMemoryFileSystemImpl.hasFiles(String aPath,
boolean isRecursively) |
Determines whether there is any file (handle)s found for the given path.
|
static String |
FileSystemUtility.toNormalizedPath(String aPath,
FileSystem aFileSystem) |
Truncates any prefixed path separator as we assemble our new path with
the according namespace in front.
|
Copyright © 2018. All rights reserved.