すべてのバージョン
Fisheye 4.2 ドキュメントFisheye 4.1 ドキュメント
Fisheye 4.0 ドキュメント
その他...
FishEye supports a powerful type of regular expression for matching files and directories (same as the pattern matching in Apache Ant).
These expressions use the following wild cards:
? |
Matches one character (any character except path separators) |
|
Matches zero or more characters (not including path separators) |
|
Matches zero or more path segments. |
Remember that Antglobs match paths, not just simple filenames.
/**/ で始まると見なされます。/ である場合、** が自動的に追加されます。Also see the Ant documentation.
*.txt |
|
/*.txt |
|
dir1/file.txt |
|
**/dir1/file.txt |
上記と同じです。 |
/**/dir1/file.txt |
上記と同じです。 |
/dir3/**/dir1/file.txt |
|
/dir1/** |
|