Interface FileSystemProvider

Provides methods to interact with an abstract file system. The default implementation is based on the node.js fs API.

interface FileSystemProvider {
    readDirectory(uri: URI): Promise<FileSystemNode[]>;
    readFile(uri: URI): Promise<string>;
}

Implemented by

Methods