GetFileMetadataCmdFlags Enumeration
|
Flags for the fstat command.
Namespace:
Perforce.P4
Assembly:
p4api.net (in p4api.net.dll) Version: 2024.2.269.3570
Syntax [FlagsAttribute]
public enum GetFileMetadataCmdFlags
<FlagsAttribute>
Public Enumeration GetFileMetadataCmdFlags
[FlagsAttribute]
public enum class GetFileMetadataCmdFlags
[<FlagsAttribute>]
type GetFileMetadataCmdFlags
Members
| Member name | Value | Description |
---|
| None | 0 |
No flags.
|
| MultiFileArgs | 1 |
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.
|
| Reverse | 2 |
The -r flag sorts the output in reverse order.
|
| Attributes | 4 |
-Oa output attributes set by 'p4 attribute'.
|
| AttributeDigest | 8 |
-Od output the digest of the attribute.
|
| HexAttributes | 16 |
-Oe output attribute values encoded as hex
|
| AllRevisions | 32 |
-Of output all revisions for the given files (this
option suppresses other* and resolve* fields)
|
| FileSize | 64 |
-Ol output a fileSize and digest field for each revision
(this may be expensive to compute)
|
| LocalPath | 128 |
-Op output the local file path in both Perforce syntax
(//client/) as 'clientFile' and host form as 'path'
|
| PendingInteg | 256 |
-Or output pending integration record information for
files opened on the current client, or if used with
'-e <change> -Rs', on the shelved change
|
| ExcludeClientData | 512 |
-Os exclude client-related data from output
|
| ClientMapped | 1024 |
-Rc limit output to files mapped in the client view
|
| Synced | 2048 |
-Rh limit output to files synced to the client workspace
|
| NotHeadRev | 4096 |
-Rn limit output to files opened not at the head revision
|
| Opened | 8192 |
-Ro limit output to files opened
|
| Resolved | 16384 |
-Rr limit output to files opened that have been resolved
|
| Shelved | 32768 |
-Rs limit output to files shelved (requires -e)
|
| NeedsResolve | 65536 |
-Ru limit output to files opened that need resolving
|
| FileTypeSort | 131072 |
-St sort by filetype
|
| DateSort | 262144 |
-Sd sort by date
|
| HeadRevSort | 524288 |
-Sr sort by head revision
|
| HaveRevSort | 1048576 |
-Sh sort by have revision
|
| FileSizeSort | 2097152 |
-Ss sort by filesize
|
| InUnloadDepot | 4194304 |
-U displays information about unload files in
the unload depot (see 'p4 help unload').
|
| AttributesProp | 8388608 | |
See Also