Look up game files and FileDataIDs
wow_file_searchResolve WoW asset file names or FileDataIDs to the exact texture path needed for SetTexture, SetNormalTexture, and SetModel.
Instructions
Find game art and asset files by name, and get the FileDataID and texture path an addon needs to reference them. Covers every interface texture and icon (and models and maps when the full index is synced). A numeric query is treated as a FileDataID and resolved back to its path. Use this whenever writing SetTexture, SetNormalTexture or SetModel.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ext | No | Restrict by extension, e.g. blp or m2. | |
| limit | No | ||
| query | Yes | File name fragment, or a numeric FileDataID to resolve. | |
| under | No | Restrict to a path prefix, e.g. interface/icons/ or interface/buttons/. | |
| includeNonInterface | No | Search beyond interface/** — models, maps, sounds. Requires the full index. |