Hi Edward, On 03/18/2014 06:05 PM, Edward Spiegel wrote: Hi, One of the installers that I have to build installs an app plus a folder of supporting files. There are 3 possible destinations for the folder of supporting files and it is easy for me to detect the correct destination by checking for the location of a couple of folders in well-defined places. Since the payload is pretty large (a few hundred megabytes of audio files), I'd like to have only a single instance of the payload in the installer and to be able to have the installer put it in the right place. What I want to do is test for the presence of target folder A and if it is there deliver the payload there and go on to potential targets B and C if A is not present. Any suggestions about the best way to accomplish this? Hope this helps, Matthias Best, Edward _______________________________________________ Do not post admin requests to the list. They will be ignored. Installer-dev mailing list (Installer-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/installer-dev/matthias.schroder%40ce... This email sent to matthias.schroder@cern.ch _______________________________________________ Do not post admin requests to the list. They will be ignored. Installer-dev mailing list (Installer-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/installer-dev/site_archiver%40lists.... This email sent to site_archiver@lists.apple.com If you don't have any user-selectable options you can just put your payload somewhere in /tmp, and check in a post-install script whether A, B or C exist. Then you do a command line install of the package in /tmp into A, B or C in that same post-install script. But this does not work if the user is supposed to select or deselect part of the payload. Maybe somebody has a nicer solution that allows true interaction with the user.