static List<FileInfo> |
FileInfo.fromItemInfos(List<GoogleCloudStorageItemInfo> itemInfos) |
Handy factory method for constructing a list of FileInfo from a list of
GoogleCloudStorageItemInfo.
|
List<FileInfo> |
GoogleCloudStorageFileSystem.getFileInfos(List<URI> paths) |
Gets information about each path in the given list; more efficient than calling getFileInfo()
on each path individually in a loop.
|
List<FileInfo> |
GoogleCloudStorageFileSystemImpl.getFileInfos(List<URI> paths) |
|
default List<FileInfo> |
GoogleCloudStorageFileSystem.listFileInfo(URI path) |
If the given path points to a directory then the information about its children is returned,
otherwise information about the given file is returned.
|
List<FileInfo> |
GoogleCloudStorageFileSystem.listFileInfo(URI path,
ListFileOptions listOptions) |
If the given path points to a directory then the information about its children is returned,
otherwise information about the given file is returned.
|
List<FileInfo> |
GoogleCloudStorageFileSystemImpl.listFileInfo(URI path,
ListFileOptions listOptions) |
|
default List<FileInfo> |
GoogleCloudStorageFileSystem.listFileInfoForPrefix(URI prefix) |
Equivalent to a recursive listing of prefix, except that prefix doesn't have to
represent an actual object but can just be a partial prefix string.
|
List<FileInfo> |
GoogleCloudStorageFileSystem.listFileInfoForPrefix(URI prefix,
ListFileOptions listOptions) |
Equivalent to a recursive listing of prefix, except that prefix doesn't have to
represent an actual object but can just be a partial prefix string.
|
List<FileInfo> |
GoogleCloudStorageFileSystemImpl.listFileInfoForPrefix(URI prefix,
ListFileOptions listOptions) |
|
GoogleCloudStorage.ListPage<FileInfo> |
GoogleCloudStorageFileSystem.listFileInfoForPrefixPage(URI prefix,
ListFileOptions listOptions,
String pageToken) |
|
default GoogleCloudStorage.ListPage<FileInfo> |
GoogleCloudStorageFileSystem.listFileInfoForPrefixPage(URI prefix,
String pageToken) |
|
GoogleCloudStorage.ListPage<FileInfo> |
GoogleCloudStorageFileSystemImpl.listFileInfoForPrefixPage(URI prefix,
ListFileOptions listOptions,
String pageToken) |
|
default List<FileInfo> |
GoogleCloudStorageFileSystem.listFileInfoStartingFrom(URI startsFrom) |
Return all the files which are lexicographically equal or greater than the provided path.
|
List<FileInfo> |
GoogleCloudStorageFileSystem.listFileInfoStartingFrom(URI startsFrom,
ListFileOptions listOptions) |
Return all the files which are lexicographically equal or greater than the provided path.
|
List<FileInfo> |
GoogleCloudStorageFileSystemImpl.listFileInfoStartingFrom(URI startsFrom,
ListFileOptions listOptions) |
|