When the user performs an update, a specific files should never be overwritten (this file holds some user information). On the other hand, when the setup is a first time install, the file must be installed in the [TARGETDIR].
So, on the Launch Condition screen, I created a File Search, checking if the specific file does exist. This search has the property FLEETEXISTS. Like this:
On the File Installation Properties I'm checking the Condition [FLEETEXISTS] to determine if the file exists. Something like this.
I tried several syntaxes, like...
Expand|Select|Wrap|Line Numbers
- NOT FLEETEXISTS
- NOT [FLEETEXISTS]
- FLEETEXISTS=FALSE
- FLEETEXISTS=""
- FLEETEXISTS=0
The deployment properties are:
How can I make things work?
Frank