addonFiles: Difference between revisions
Lou Montana (talk | contribs) m (Text replacement - "\| *arma3 * * *\| *([0-2]\.[0-9]{2}) * " to "|game1= arma3 |version1= $1 ") |
(added 2.22 changes) |
||
| (5 intermediate revisions by 2 users not shown) | |||
| Line 7: | Line 7: | ||
|descr=Returns a list of files present in the addon.<br> | |descr=Returns a list of files present in the addon.<br> | ||
{{Feature| | {{Feature|informative|Querying protected {{hl|.ebo}} addons will return an empty array {{hl|[]}}.}} | ||
|s1= [[addonFiles]] [ | |s1= [[addonFiles]] [prefix, fileExtension] | ||
|p1= | |p1= prefix: [[String]] - addon prefix available from [[allAddonsInfo]]. Since {{GVI|arma3|2.22}} it is possible to also return all files present in a scenario folder from within [[Eden Editor]] or Eden preview with the special prefix {{hl|$mission}} | ||
| | |p2= fileExtension: [[String]] - (Optional) file extension to filter results, for example {{hl|".paa"}} | ||
|r1= [[Array]] of [[String]]s | |r1= [[Array]] of [[String]]s | ||
|x1= < | |x1= <sqf> | ||
addonFiles ["a3\3den\", ".paa"]; | |||
/* | |||
[ | [ | ||
"a3\3den\data\attributes\formation\ech_left_ca.paa", | "a3\3den\data\attributes\formation\ech_left_ca.paa", | ||
| Line 28: | Line 28: | ||
... | ... | ||
] | ] | ||
< | */ | ||
</sqf> | |||
|x2= <sqf> | |||
// Since Arma 3 2.22 | |||
addonFiles ["$mission", ".sqf"]; | |||
</sqf> | |||
|seealso= [[allAddonsInfo]] | |seealso= [[allAddonsInfo]] | ||
}} | }} | ||
Latest revision as of 16:02, 20 March 2026
Description
- Description:
- Returns a list of files present in the addon.
- Groups:
- Mods and Addons
Syntax
- Syntax:
- addonFiles [prefix, fileExtension]
- Parameters:
- prefix: String - addon prefix available from allAddonsInfo. Since
2.22 it is possible to also return all files present in a scenario folder from within Eden Editor or Eden preview with the special prefix $mission - fileExtension: String - (Optional) file extension to filter results, for example ".paa"
- Return Value:
- Array of Strings
Examples
- Example 1:
- addonFiles ["a3\3den\", ".paa"]; /* [ "a3\3den\data\attributes\formation\ech_left_ca.paa", "a3\3den\data\attributes\formation\stag_column_ca.paa", "a3\3den\data\attributes\stance\down_ca.paa", "a3\3den\data\cfg3den\layer\icondisabled_ca.paa", "a3\3den\data\controlsgroups\diagmousecontrol\mouse_ca.paa", ... ] */
- Example 2:
- // Since Arma 3 2.22 addonFiles ["$mission", ".sqf"];
Additional Information
- See also:
- allAddonsInfo
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord.
Only post proven facts here! Add Note