Uses of Interface
org.apache.commons.vfs.FileSelector
-
Packages that use FileSelector Package Description org.apache.commons.vfs The public VFS API.org.apache.commons.vfs.cache org.apache.commons.vfs.impl The standard VFS implementation.org.apache.commons.vfs.provider The File Provider API, and utility classes.org.apache.commons.vfs.provider.local The Local File Provider. -
-
Uses of FileSelector in org.apache.commons.vfs
Classes in org.apache.commons.vfs that implement FileSelector Modifier and Type Class Description classAllFileSelectorAFileSelectorthat selects everything.classFileDepthSelectorAFileSelectorthat selects all files in a particular depth range.classFileFilterSelectorAFileSelectorthat selects all children of the given fileObject.
This is to mimic theFileFilterinterfaceclassFileTypeSelectorAFileSelectorthat selects files of a particular type.Fields in org.apache.commons.vfs declared as FileSelector Modifier and Type Field Description static FileSelectorSelectors. EXCLUDE_SELFAFileSelectorthat selects all the descendents of the base folder, but does not select the base folder itself.static FileSelectorSelectors. SELECT_ALLAFileSelectorthat selects the base file/folder, plus all its descendents.static FileSelectorSelectors. SELECT_CHILDRENAFileSelectorthat selects only the direct children of the base folder.static FileSelectorSelectors. SELECT_FILESAFileSelectorthat only files (not folders).static FileSelectorSelectors. SELECT_FOLDERSAFileSelectorthat only folders (not files).static FileSelectorSelectors. SELECT_SELFAFileSelectorthat selects only the base file/folder.static FileSelectorSelectors. SELECT_SELF_AND_CHILDRENAFileSelectorthat selects the base file/folder and its direct children.Methods in org.apache.commons.vfs with parameters of type FileSelector Modifier and Type Method Description voidFileObject. copyFrom(FileObject srcFile, FileSelector selector)Copies another file, and all its descendents, to this file.intFileObject. delete(FileSelector selector)Deletes all descendents of this file that match a selector.FileObject[]FileObject. findFiles(FileSelector selector)Finds the set of matching descendents of this file, in depthwise order.voidFileObject. findFiles(FileSelector selector, boolean depthwise, java.util.List selected)Finds the set of matching descendents of this file.java.io.FileFileSystem. replicateFile(FileObject file, FileSelector selector)Creates a temporary local copy of a file and its descendents. -
Uses of FileSelector in org.apache.commons.vfs.cache
Methods in org.apache.commons.vfs.cache with parameters of type FileSelector Modifier and Type Method Description voidOnCallRefreshFileObject. copyFrom(FileObject srcFile, FileSelector selector)intOnCallRefreshFileObject. delete(FileSelector selector)FileObject[]OnCallRefreshFileObject. findFiles(FileSelector selector)voidOnCallRefreshFileObject. findFiles(FileSelector selector, boolean depthwise, java.util.List selected) -
Uses of FileSelector in org.apache.commons.vfs.impl
Methods in org.apache.commons.vfs.impl with parameters of type FileSelector Modifier and Type Method Description voidDecoratedFileObject. copyFrom(FileObject srcFile, FileSelector selector)voidSynchronizedFileObject. copyFrom(FileObject srcFile, FileSelector selector)intDecoratedFileObject. delete(FileSelector selector)intSynchronizedFileObject. delete(FileSelector selector)FileObject[]DecoratedFileObject. findFiles(FileSelector selector)voidDecoratedFileObject. findFiles(FileSelector selector, boolean depthwise, java.util.List selected)FileObject[]SynchronizedFileObject. findFiles(FileSelector selector)voidSynchronizedFileObject. findFiles(FileSelector selector, boolean depthwise, java.util.List selected)java.io.FileDefaultFileReplicator. replicateFile(FileObject srcFile, FileSelector selector)Creates a local copy of the file, and all its descendents.java.io.FilePrivilegedFileReplicator. replicateFile(FileObject srcFile, FileSelector selector)Creates a local copy of the file, and all its descendents. -
Uses of FileSelector in org.apache.commons.vfs.provider
Methods in org.apache.commons.vfs.provider with parameters of type FileSelector Modifier and Type Method Description voidAbstractFileObject. copyFrom(FileObject file, FileSelector selector)Copies another file to this file.intAbstractFileObject. delete(FileSelector selector)Deletes this file, and all children.protected java.io.FileAbstractFileSystem. doReplicateFile(FileObject file, FileSelector selector)Creates a temporary local copy of a file and its descendents.FileObject[]AbstractFileObject. findFiles(FileSelector selector)Finds the set of matching descendents of this file, in depthwise order.voidAbstractFileObject. findFiles(FileSelector selector, boolean depthwise, java.util.List selected)Traverses the descendents of this file, and builds a list of selected files.java.io.FileAbstractFileSystem. replicateFile(FileObject file, FileSelector selector)Creates a temporary local copy of a file and its descendents.java.io.FileFileReplicator. replicateFile(FileObject srcFile, FileSelector selector)Creates a local copy of the file, and all its descendents. -
Uses of FileSelector in org.apache.commons.vfs.provider.local
Methods in org.apache.commons.vfs.provider.local with parameters of type FileSelector Modifier and Type Method Description protected java.io.FileLocalFileSystem. doReplicateFile(FileObject fileObject, FileSelector selector)Creates a temporary local copy of a file and its descendents.
-