[This is preliminary documentation and is subject to change.]

Flags for the fstat command.

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

Syntax

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

Members

Member nameValueDescription
None0 No flags.
MultiFileArgs1 The -L flag can be used with multiple file arguments that are in full depot syntax and include a valid revision number. When this flag is used the arguments are processed together by building an internal table similar to a label. This file list processing is significantly faster than having to call the internal query engine for each individual file argument. However, the file argument syntax is strict and the command will not run if an error is encountered.
Reverse2 The -r flag sorts the output in reverse order.
AllRevisions4 -Of output all revisions for the given files (this option suppresses other* and resolve* fields)
FileSize8 -Ol output a fileSize and digest field for each revision (this may be expensive to compute)
LocalPath16 -Op output the local file path in both Perforce syntax (//client/) as 'clientFile' and host form as 'path'
PendingInteg32
ExcludeClientData64 -Os exclude client-related data from output
ClientMapped128 -Rc limit output to files mapped in the client view
Synced256 -Rh limit output to files synced to the client workspace
NotHeadRev512 -Rn limit output to files opened not at the head revision
Opened1024 -Ro limit output to files opened
Resolved2048 -Rr limit output to files opened that have been resolved
Shelved4096 -Rs limit output to files shelved (requires -e)
NeedsResolve8192 -Ru limit output to files opened that need resolving
FileTypeSort16384 -St sort by filetype
DateSort32768 -Sd sort by date
HeadRevSort65536 -Sr sort by head revision
HaveRevSort131072 -Sh sort by have revision
FileSizeSort262144 -Ss sort by filesize

See Also