Flags for the move command.

Namespace: Perforce.P4
Assembly: p4api.net (in p4api.net.dll) Version: 2015.1.103.4687 (2015.1.103.4687)

Syntax

C#
[FlagsAttribute]
public enum MoveFileCmdFlags
Visual Basic
<FlagsAttribute> _
Public Enumeration MoveFileCmdFlags
Visual C++
[FlagsAttribute]
public enum class MoveFileCmdFlags

Members

Member nameValueDescription
None0 No flags.
Force1 The -f flag forces a move to an existing target file. The file must be synced and not opened. The originating source file will no longer be synced to the client.
Preview2 The -n flag previews the operation without moving files.
ServerOnly4 The -k flag performs the rename on the server without modifying client files. Use with caution, as an incorrect move can cause discrepancies between the state of the client and the corresponding server metadata.

See Also