The directory field is essentially the same as the file field except it the selection is limited to directories only, not single files.
Code Block | ||
---|---|---|
| ||
<field type="dir" align="left" variable="existing.jboss.home"> <spec txt="" size="25" set="$INSTALL_PATH$FILE_SEPARATOR${jboss.version}" mustExist="false"/> </field> |
The directory
field supports the following attributes for the <spec>
element:
Name | Required | Description | Value |
---|---|---|---|
| no | Specifies whether or not the selected path must be an existing directory. | true, false default: true |
| no | Specifies whether or not the selected directory should be created if it does not exist. (requires mustExist=false) | true, false default: false |
| no | If set true, no file has to be selected and the box can be left empty. | true, false default: false |
The directory supports a <description> element that can be used to provide information about the purpose of the directory field.
See Fields documentation for more detail.
...
Example
linenumbers | true
---|
Code Block |
<field type="dir" align="left" variable="encrypted.dir"> <description id="encrypted.dir.info" txt="Which directory would you like to be encrypted?" /> <spec txt="" size="25" set="" mustExist="true"/> </field> |
...