@ui5/fs/ReaderCollectionPrioritized

@ui5/fs/ReaderCollectionPrioritized

Prioritized Resource Locator Collection

Constructor

new @ui5/fs/ReaderCollectionPrioritized(parameters)

Description:
  • The constructor.
Source:
Parameters:
Name Type Description
parameters object
Properties
Name Type Attributes Description
name string The collection name
readers Array.<@ui5/fs/AbstractReader> <optional>
Prioritized list of resource readers (tried in the order provided). If none are provided, the collection will never return any results.

Extends

Methods

byGlob(virPattern, optionsopt) → {Promise.<Array.<@ui5/fs/Resource>>}

Description:
  • Locates resources by matching glob patterns.
Source:
Overrides:
Example
byGlob("**‏/*.{html,htm}");
byGlob("**‏/.library");
byGlob("/pony/*");
Parameters:
Name Type Attributes Description
virPattern string | Array.<string> glob pattern as string or array of glob patterns for virtual directory structure
options object <optional>
glob options
Properties
Name Type Attributes Default Description
nodir boolean <optional>
true Do not match directories
Returns:
Promise resolving to list of resources
Type
Promise.<Array.<@ui5/fs/Resource>>

byPath(virPath, optionsopt) → {Promise.<@ui5/fs/Resource>}

Description:
  • Locates resources by matching a given path.
Source:
Overrides:
Parameters:
Name Type Attributes Description
virPath string Virtual path
options object <optional>
Options
Properties
Name Type Attributes Default Description
nodir boolean <optional>
true Do not match directories
Returns:
Promise resolving to a single resource
Type
Promise.<@ui5/fs/Resource>