IzPack offers the possibility to set a list of default installation directories depending on the target installation platform. When the compiled installer is executed IzPack chooses the one matching the assigned platform.

This can be achieved by explicitely setting variables with the prefix: TargetPanel.dir. IzPack recognizes this as built-in variable which can be user-modified.

For example, change the resources to variables:

<resources>
  <res id="TargetPanel.dir.windows" src="@{izpack.dir.app}/installpath.windows.txt"/>
  <res id="TargetPanel.dir.unix" src="@{izpack.dir.app}/installpath.unix.txt"/>
</resources>

to

<variables>
  <variable name="TargetPanel.dir.windows" value="C:/MyApp"/>
  <variable name="TargetPanel.dir.unix" value="/usr/local/myapp"/>
</variables>

This uses the following variable search order to determine the default directory to display:

  1. TargetPanel.dir.<platform symbolic name> e.g. TargetPanel.dir.windows_7
  2. TargetPanel.dir.<platform name> e.g. TargetPanel.dir.windows
  3. TargetPanel.dir.<parent platform> e.g. given platform "FEDORA_LINUX" looks for TargetPanel.dir.linux, followed by TargetPanel.dir.unix
  4. TargetPanel.dir
  5. DEFAULT_INSTALL_PATH
  6. SYSTEM_user_dir corresponds to the system property "user.dir"

Available platforms can be found in the class Platforms. The names are the lowercase versions of those defined.
Allowed names include:

Differences from 4.3.6

The range of values the variable can have has been significantly enhanced.
For 5.0 a better approach would be to use Platform to determine the appropriate variable (see IZPACK-829).

Differences between 4.3.5 and 4.3.6

In 4.3.5, resources were used rather than variables. Resources were searched for with the following names

IZPACK-798 changed the above to use variables instead of text files, following the same naming convention.