gpt4 book ai didi

windows - 文件路径中两个星号在一起是什么意思?

转载 作者:可可西里 更新时间:2023-11-01 11:55:32 26 4
gpt4 key购买 nike

下面的文件路径是什么意思?

$(Services_Jobs_Drop_Path)\**\*.config

变量只是保存了一些路径,没有什么有趣的。我更关心 ** 到底是什么意思。有什么想法吗?

附言以下路径在 msbuild 脚本中使用,如果有帮助的话。

最佳答案

\**\ 这种模式常用于Copy Task用于递归文件夹树遍历。基本上,这意味着所有扩展名为 config 的文件都将从 $(Services_Jobs_Drop_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"

关于windows - 文件路径中两个星号在一起是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8532929/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com