On May 10, 2006, at 7:09 AM, Michel Cunha wrote:
Hi,
Question #1:
I'm writing an Installer Plugin and I need to create files in the full target path selected by the user in the "Select Destination dialog".
However I did not find any method and/or variables that will return me that information.
Is there any method that will return me this information ?
See <InstallerPlugins/InstallerState.h>:
/*!
@method targetVolumePath
@abstract Specifies the mount point of the selected target
@discussion Only Available after target has been selected.
*/
- (NSString *)targetVolumePath;
/*!
@method targetPath
@abstract Full target path selected.
@discussion Specifies the full path selected by the user. This path contains the targetVolumePath.
*/
- (NSString *)targetPath;
Question #2:
Is there an web site with Installer Plugins samples that I can look to help me understand how to write Installer Plugins in Cocoa (I'm C++ programmer).
- Luke