Repeater
Available since
Available in app v0.11.19 and @filearchitect/core 0.0.22.
Use $*N in a file or folder name to repeat that line N times.
Basic repeat
txt
filename_$*5.psdCreates:
txt
filename_1.psd
filename_2.psd
filename_3.psd
filename_4.psd
filename_5.psdRepeated folders with children
If the repeated line is a folder, all indented children are repeated inside each generated folder.
txt
batch_$*3
testCreates:
txt
batch_1
test
batch_2
test
batch_3
testNested repeaters
You can combine repeaters in nested levels.
txt
batch_$*2
shot_$*3.psdCreates:
txt
batch_1
shot_1.psd
shot_2.psd
shot_3.psd
batch_2
shot_1.psd
shot_2.psd
shot_3.psdNotes
- Repeater counting starts at
1. - Repeaters work in app input, CLI, and library usage (core parser).
- If multiple repeaters are on the same line, use the same count for predictable output.