A FileSystemProvider provides the capabilities to read, write, discover, and to manage files and folders of the underlying (potentially virtual) file system. FileSystemProviders can be used to serve files from both the local disk as well as remote locations like ftp-servers, REST-services etc. A FileSystemProvider is registered for a certain scheme and can handle all resources whose uri does conform to that scheme.

Implements

Constructors

Properties

capabilities: number = ...

The FileSystemProviderCapabilities for this provider.

onDidChangeCapabilities: Event<any> = Event.None
  • Event that is fired if the capabilities of this provider have changed.
onDidChangeFile: Event<readonly FileChange[]> = ...

Event that is fired if a (watched) file in the filesystem of this provider has changed.

onDidChangeFileEmitter: Emitter<readonly FileChange[]> = ...
onFileWatchError: Event<any> = Event.None

Event that is fired if an error occurred when watching files in the filesystem of this provider.

store: JsonSchemaDataStore

Methods