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 タスクでは、以下のように使用される「**」が表示されます。
<copy todir="/something"> <fileset dir="/source"> <exclude name="**/*.sql"/> </fileset> </copy>
**名前のプロパティは何ですか? ワイルドカードのスタイルは見たことがありません。なぜ*.sql十分ではないのですか?
**
*.sql
*.sql「指定されたディレクトリ内の.sqlで終わるすべてのファイル」を意味します
**\*.sql「指定されたディレクトリとそのすべてのサブディレクトリ内で、.sql で終わるすべてのファイル」を意味します
**\*.sql
.sqlと言いますが、これには sql ファイルのみが含まれ、サブディレクトリは含まれません。sql ファイルとサブフォルダー内の sql ファイルを含めたい場合は、* */*.sql を使用できます。