Русский (Russian)
Appearance
STRUCT
FileListGlob
Contents
glob
excluding
glob(_:excluding:)
glob(_:excluding:)
public struct FileListGlob: Codable, Equatable, Sendable
A glob pattern that refers to files.
glob
public var glob: Path
The path with a glob pattern.
excluding
public var excluding: [Path]
The excluding paths.
glob(_:excluding:)
public static func glob(
_ glob: Path,
excluding: [Path] = []
) -> FileListGlob
Returns a generic file list glob.
Name | Description |
---|---|
glob | The path with a glob pattern. |
excluding | The excluding paths. |
glob(_:excluding:)
public static func glob(
_ glob: Path,
excluding: Path?
) -> FileListGlob
Returns a file list glob with an optional excluding path.