Function globWalk

  • This is a utility for walking a file tree while matching a file path globstar pattern.

    Parameters

    • __namedParameters: {
          basePath?: string;
          fs: FileSystem | FileSystemReadable;
          pattern?: string;
          yieldDirectories?: boolean;
          yieldFiles?: boolean;
          yieldParents?: boolean;
          yieldRoot?: boolean;
          yieldStats?: boolean;
      }
      • Optional basePath?: string
      • fs: FileSystem | FileSystemReadable
      • Optional pattern?: string
      • Optional yieldDirectories?: boolean
      • Optional yieldFiles?: boolean
      • Optional yieldParents?: boolean
      • Optional yieldRoot?: boolean
      • Optional yieldStats?: boolean

    Returns AsyncGenerator<TreeNode, void, void>

Generated using TypeDoc