File command middle-of-path wildcards
Just to double-check... the following is known to be an invalid use of the File command, right?
File "Folder\*\SpecificFolderName\*.*"
With the only NSIS-side remedy being to hard-code (or generate by pre-compile utility/installer) the names of the folders going in in the asterisk wildcard?
( the filesystem side remedy being to swap the wildcarded folder and the SpecificFolderName around, making for `File /r "Folder\SpecificFolderName\*.*"` )
Just making sure before I potentially embark on the NSIS-side remedy :)