** matches any character, and * matches anything other than a directory separator.
For example, /path/** will match one of the following:
- / path / file
- / path / to / some / file
- / path / to / some / others / file
However, /path/* will match only one.
source share