This repository has been archived on 2022-12-23. You can view files and clone it, but cannot push or open issues or pull requests.
fuck-premake-old2/website/docs/path.wildcards.md
2021-03-12 22:10:24 +01:00

26 lines
484 B
Markdown

Converts from Premake's simple wildcard syntax to a corresponding Lua pattern.
```lua
p = path.wildcards("pattern")
```
### Parameters ###
`pattern` is a file system path which may contain one more `\*` (shallow match) or `\*\*` (recursive match) sequences.
### Return Value ###
A Lua pattern string which is equivalent to the input pattern.
### Availability ###
Premake 4.0 or later.
### See Also ###
* [os.matchdirs](os.matchdirs.md)
* [os.matchfiles](os.matchfiles.md)