| ConvertToMSBuildFormatExpandWildcard Method |
This is used to expand a wildcard into all matching files
Namespace: SandcastleBuilder.Utils.ConversionAssembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2014.11.22.0
Syntax protected static IEnumerable<string> ExpandWildcard(
string wildcard,
bool includeSubFolders
)
Protected Shared Function ExpandWildcard (
wildcard As String,
includeSubFolders As Boolean
) As IEnumerable(Of String)
protected:
static IEnumerable<String^>^ ExpandWildcard(
String^ wildcard,
bool includeSubFolders
)
static member ExpandWildcard :
wildcard : string *
includeSubFolders : bool -> IEnumerable<string>
Parameters
- wildcard
- Type: SystemString
The wildcard to expand. - includeSubFolders
- Type: SystemBoolean
True to include subfolders, false
to only include the given folder.
Return Value
Type:
IEnumerableStringAn enumerable list of matching files.
See Also