Uses of Interface
org.eclipse.core.filesystem.IFileStore
Package
Description
Provides the API for accessing file buffers.
Provides an interface for interacting with a file system.
Provides an API to be extended by a file system implementation.
Application programming interfaces for describing the history associated with
files.
Provides a standard text editor and concrete document providers based
IFileBuffer
and others directly handling IFile
and
IStorage
as editor input.APIs for the IDE-specific portion of the Eclipse Platform User Interface.
-
Uses of IFileStore in org.eclipse.core.filebuffers
Modifier and TypeMethodDescriptionIFileBuffer.getFileStore()
Returns the file store of this file buffer.static IFileStore
FileBuffers.getFileStoreAtLocation
(IPath location) Returns the file in the local file system for the given location.Modifier and TypeMethodDescriptionvoid
IFileBufferManager.connectFileStore
(IFileStore fileStore, IProgressMonitor monitor) Connects the given file store to this manager.void
IFileBufferManager.disconnectFileStore
(IFileStore fileStore, IProgressMonitor monitor) Disconnects the given file store from this manager.IFileBufferManager.getFileStoreFileBuffer
(IFileStore fileStore) Returns the file buffer managed for the given file store ornull
if there is no such file buffer.ITextFileBufferManager.getFileStoreTextFileBuffer
(IFileStore fileStore) Returns the text file buffer managed for the given file store ornull
if there is no such text file buffer. -
Uses of IFileStore in org.eclipse.core.filesystem
Modifier and TypeMethodDescriptionIFileStore.childStores
(int options, IProgressMonitor monitor) Returns anIFileStore
instance for each file and directory contained within this store.IFileSystem.fromLocalFile
(File file) Returns the file store in this file system corresponding to the given local file.Returns a child store with the provided name whose parent is this store.Deprecated.IFileTree.getChildStores
(IFileStore store) Returns anIFileStore
instance for each file and directory contained within the given store at the time this file tree was created.IFileStore.getFileStore
(IPath path) Returns a handle to the member store identified by the given path.IFileStore.getParent()
Returns the parent of this store.static IFileStore
Returns the file store corresponding to the provided URI.Returns a handle to a file store in this file system.Returns a handle to a file store in this file system.IFileTree.getTreeRoot()
Returns the root of this treeIFileStore.mkdir
(int options, IProgressMonitor monitor) Creates a directory, and optionally its parent directories.Modifier and TypeMethodDescriptiondefault int
IFileStore.compareTo
(IFileStore other) Compares this store to other store of same FileSystem.void
IFileStore.copy
(IFileStore destination, int options, IProgressMonitor monitor) Copies the file represented by this store to the provided destination store.IFileSystem.fetchFileTree
(IFileStore root, IProgressMonitor monitor) Returns a file tree containing information about the complete sub-tree rooted at the given store.IFileTree.getChildInfos
(IFileStore store) Returns anIFileInfo
instance for each file and directory contained within the given store at the time this file tree was created.IFileTree.getChildStores
(IFileStore store) Returns anIFileStore
instance for each file and directory contained within the given store at the time this file tree was created.IFileTree.getFileInfo
(IFileStore store) Returns information about this file at the time this file tree was created.boolean
IFileStore.isParentOf
(IFileStore other) Returns whether this store is a parent of the provided store.void
IFileStore.move
(IFileStore destination, int options, IProgressMonitor monitor) Moves the file represented by this store to the provided destination store. -
Uses of IFileStore in org.eclipse.core.filesystem.provider
Modifier and TypeClassDescriptionclass
The abstract superclass of allIFileStore
implementations.Modifier and TypeFieldDescriptionprotected IFileStore
FileTree.treeRoot
The root of the file treeModifier and TypeMethodDescriptionFileStore.childStores
(int options, IProgressMonitor monitor) The default implementation ofchildStores(int, IProgressMonitor)
.FileSystem.fromLocalFile
(File file) Returns the file store in this file system corresponding to the given local file.abstract IFileStore
Deprecated.useFileStore.getFileStore(IPath)
insteadabstract IFileStore[]
FileTree.getChildStores
(IFileStore store) FileStore.getFileStore
(IPath path) The default implementation ofgetFileStore(IPath)
Subclasses may override.abstract IFileStore
FileStore.getParent()
abstract IFileStore
Subclasses must implement this method to satisfy the contract ofIFileSystem.getStore(URI)
.This is the default implementation ofIFileSystem.getStore(IPath)
.FileTree.getTreeRoot()
FileStore.mkdir
(int options, IProgressMonitor monitor) The default implementation ofmkdir(int, IProgressMonitor)
.Modifier and TypeMethodDescriptionvoid
FileStore.copy
(IFileStore destination, int options, IProgressMonitor monitor) The default implementation ofcopy(IFileStore, int, IProgressMonitor)
.protected void
FileStore.copyDirectory
(IFileInfo sourceInfo, IFileStore destination, int options, IProgressMonitor monitor) Recursively copies a directory as specified bycopy(IFileStore, int, IProgressMonitor)
.protected void
FileStore.copyFile
(IFileInfo sourceInfo, IFileStore destination, int options, IProgressMonitor monitor) Copies a file as specified bycopy(IFileStore, int, IProgressMonitor)
.FileSystem.fetchFileTree
(IFileStore root, IProgressMonitor monitor) Returns a file tree containing information about the complete sub-tree rooted at the given store.abstract IFileInfo[]
FileTree.getChildInfos
(IFileStore store) abstract IFileStore[]
FileTree.getChildStores
(IFileStore store) abstract IFileInfo
FileTree.getFileInfo
(IFileStore store) boolean
FileStore.isParentOf
(IFileStore other) The default implementation ofisParentOf(IFileStore)
.void
FileStore.move
(IFileStore destination, int options, IProgressMonitor monitor) The default implementation ofmove(IFileStore, int, IProgressMonitor)
.ModifierConstructorDescriptionFileTree
(IFileStore treeRoot) Creates a new file tree with tree root as the root -
Uses of IFileStore in org.eclipse.team.core.history
Modifier and TypeMethodDescriptionIFileHistoryProvider.getFileHistoryFor
(IFileStore store, int flags, IProgressMonitor monitor) Returns anIFileHistory
for the specifiedIFileStore
. -
Uses of IFileStore in org.eclipse.ui.editors.text
Modifier and TypeMethodDescriptionprotected IFileStore
TextFileDocumentProvider.getFileStore
(TextFileDocumentProvider.FileInfo info) Returns the file store denoted by the given info. -
Uses of IFileStore in org.eclipse.ui.ide
Modifier and TypeMethodDescriptionstatic IEditorDescriptor
IDE.getEditorDescriptorForFileStore
(IFileStore fileStore, boolean allowInteractive) Returns an editor descriptor appropriate for opening the given file store.static IEditorPart
IDE.openEditorOnFileStore
(IWorkbenchPage page, IFileStore fileStore) Opens an editor on the given IFileStore object.static IEditorPart
IDE.openInternalEditorOnFileStore
(IWorkbenchPage page, IFileStore fileStore) Opens an internal editor on the given IFileStore object.
getFileStore(IPath)
instead