GlobbingAliases.

GetPaths(ICakeContext, GlobPattern) Method

Summary

Gets all paths matching the specified pattern.
Namespace
Cake.Common.IO
Containing Type
GlobbingAliases

Syntax

[CakeMethodAlias]
[CakeAliasCategory("Paths")]
public static PathCollection GetPaths(this ICakeContext context, GlobPattern pattern)

Examples

var paths = GetPaths("./src/**/obj/*");
foreach(var path in paths)
{
    Information("Path: {0}", path);
}

Attributes

Type Description
CakeMethodAliasAttribute An attribute used to mark script method aliases.
CakeAliasCategoryAttribute An attribute used for documentation of alias methods/properties.

Parameters

Name Type Description
context ICakeContext The context.
pattern GlobPattern The glob pattern to match.

Return Value

Type Description
PathCollection A PathCollection.