SkipLockedFiles Property

This property specifies whether to try to send locked  files to each destination server defined for the project.

Syntax

ReplicationClient.SkipLockedFiles [= Skip]

Parameters

Skip

If True, do not try to send locked files; if False, try to send locked files.

Remarks

You must have Site Server Publishing administrator privileges on the server to call this method.

Example

The following example tries to send any locked files to Project1's destination servers.

Option Explicit 
On Error Resume Next

dim Client
set Client = CreateObject("CrsApi.ReplicationClient")
Client.Initialize("Project1")

Client.SkipLockedFiles = False 

'Release Client object
set Client = Nothing

See Also

ReplicationClient.DeleteFile, ReplicationClient.GetExtendedErrorInfo, ReplicationProject.EnumDestination


© 1997-1998 Microsoft Corporation. All rights reserved.