I have a directory structure that has the USER_ID in it, I'd like to distribute an nsis script that goes to a wild-carded directory ... something like
File ..\*Project\a\b.exe ;or
File ..\B???Project\a\b.exe
to go to ..\B123Project\a\b\c.exe or B234Project\a\b.exe.
The wild card does what I want for files, but not directories.
There will only be one USER_ID, so the * or ??? always refer to what I want it to refer to, so that problem isn't important to me.
I could parse the current structure for that data, but it seems like I should be able to do what I want to do.