Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
由于 ** 匹配任意数量的路径段和分隔符,是否可以安全地假设以下 ant 模式将始终匹配同一组文件?
**/**.jar **/*.jar **.jar
'**/**.jar'并'**/*.jar'匹配整个文件目录树中包含 .jar 文件的所有文件和目录。即也包括子目录
'**/**.jar'
'**/*.jar'
**.jar仅匹配当前目录中的所有 .jar 文件。此模式不会匹配整个文件目录树中的所有 .jar 文件。它只会在基本目录中查找,而不是在文件目录树的子目录中查找。希望这可以帮助
**.jar