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.
\**\This pattern is often used in Copy Task for recursive folder tree traversal. Basically it means that all files with extensionconfigwould be processed from the all subdirectories of$(Services_Jobs_Drop_Path)path.MSDN, Using Wildcards to Specify Items:
MSDN, Specifying Inputs with Wildcards