Set XCopy.XCopyMode at runtime?

I want to set the XCopyMode property, of the XCopy action, at runtime and the property is of type TFBXCopyMode, which I assume is an enum but I can't find any documentation on it.

Can anyone point me to the documentation or tell me the possible values?

Thanks.

Hi Shane,

The possible values for XCopyMode are:

mdNormal
mdRecursive
mdTest
mdDirStructure

If you type 'Action.XCopyMode = ’ into the script editor and press Ctrl-Space you should get the code completion dialog which should have the 4 values listed.

Regards,
Paul.

Thanks Paul.