For the follow examples assume you have the directory structure:
- Root
- File1.txt
- File2.md
- Directory1
- SubFile1.txt
- SubFile2.md
Then, for the following PATH
values:
Root/File1.txt
, matches- Root/File1.txt
Root/*.txt
, matches- Root/File1.txt
Root/**/*
, matches- Root/File1.txt
- Root/File2.md
- Root/Directory1/SubFile1.txt
- Root/Directory1/SubFile2.md
Root/**/*File?.txt
, matches- Root/File1.txt
- Root/Directory1/SubFile1.txt