Skip to content
⌘ NSIS Forum Archive

language selection?

5 posts

aleksanteri#

language selection?

If I would use up some language tables from "${NSISDIR}\Contrib\Language files", how do I create a selection list instead of using the last option?
aleksanteri#
Ok.

Is also there a way to get a file from a subdirectory?
For example:

File "$EXEDIR\subdir\subfile.txt"
or something.
Afrow UK#
$EXEDIR is the path to the installer executable at run-time (when the user runs your installer).
You can't use it with File, because File is a compile-time instruction.

If you want to include a file in a sub folder relative to your setup script use:
File "subdir\subfile.txt"

-Stu