• Reads a directory and returns lists of entries in the directory by entry type.

    Parameters

    • uri: string

      URI of directory.

    • OptionalentryFilter: (entryName: string) => boolean

      Function to filter out entries in the directory based on their names.

    Returns Promise<Readonly<{ directory: string[]; file: string[]; unknown: string[] }>>

    Map of entry type to list of uris for each entry in the directory with that type.