What does two asterisks together in file path mean?

WindowsMsbuildFilepath

Windows Problem Overview


What does the following file path mean?

$(Services_Jobs_Drop_Path)\**\*.config

The variable just holds some path, nothing interesting. I'm a lot more concerned, what the hell the ** mean. Any ideas?

P.S. The following path is used in msbuild scripts, if it helps.

Windows Solutions


Solution 1 - Windows

\**\ This pattern is often used in Copy Task for recursive folder tree traversal. Basically it means that all files with extension config would be processed from the all subdirectories of $(Services_Jobs_Drop_Path) path.

MSDN, Using Wildcards to Specify Items:

> You can use the **, *, and ? wildcard characters to specify a group of > files as inputs for a build instead of listing each file separately. > > - The ? wildcard character matches a single character. > - The * wildcard character matches zero or more characters. > - The ** wildcard character sequence matches a partial path. >

MSDN, Specifying Inputs with Wildcards > To include all .jpg files in the Images directory and subdirectories > Use the following Include attribute: > > Include="Images\**\*.jpg"

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionArnthorView Question on Stackoverflow
Solution 1 - WindowssllView Answer on Stackoverflow