VS Code API
    Preparing search index...

    Function registerFileSystemProvider

    • Register a filesystem provider for a given scheme, e.g. ftp.

      There can only be one provider per scheme and an error is being thrown when a scheme has been claimed by another provider or when it is reserved.

      Parameters

      • scheme: string

        The uri-scheme the provider registers for.

      • provider: FileSystemProvider

        The filesystem provider.

      • Optionaloptions: { isCaseSensitive?: boolean; isReadonly?: boolean | MarkdownString }

        Immutable metadata about the provider.

        • Optional ReadonlyisCaseSensitive?: boolean

          Whether the file system provider use case sensitive compare for paths

        • Optional ReadonlyisReadonly?: boolean | MarkdownString

          Whether the file system provider is readonly, no modifications like write, delete, create are possible. If a MarkdownString is given, it will be shown as the reason why the file system is readonly.

      Returns Disposable

      A Disposable that unregisters this provider when being disposed.