Click or drag to resize

GetDepotFilesCmdOptions Class

Options for the files command
Inheritance Hierarchy
SystemObject
  System.Collections.GenericDictionaryString, String
    Perforce.P4Options
      Perforce.P4GetDepotFilesCmdOptions

Namespace:  Perforce.P4
Assembly:  p4api.net (in p4api.net.dll) Version: 2018.4.174.677 (2018.4.174.0677)
Syntax
public class GetDepotFilesCmdOptions : Options

The GetDepotFilesCmdOptions type exposes the following members.

Constructors
  NameDescription
Public methodGetDepotFilesCmdOptions
Initializes a new instance of the GetDepotFilesCmdOptions class
Top
Properties
  NameDescription
Public propertyComparer (Inherited from DictionaryString, String.)
Public propertyCount (Inherited from DictionaryString, String.)
Public propertyItem
Gets or sets the value associated with the specified key.
(Inherited from DictionaryString, String.)
Public propertyKeys (Inherited from DictionaryString, String.)
Public propertyValues (Inherited from DictionaryString, String.)
Top
Methods
  NameDescription
Public methodAdd
Adds the specified key and value to the dictionary.
(Inherited from DictionaryString, String.)
Public methodClear (Inherited from DictionaryString, String.)
Public methodContainsKey (Inherited from DictionaryString, String.)
Public methodContainsValue (Inherited from DictionaryString, String.)
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetEnumerator (Inherited from DictionaryString, String.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetObjectData (Inherited from DictionaryString, String.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodOnDeserialization
Implements the ISerializable interface and raises the deserialization event when the deserialization is complete.
(Inherited from DictionaryString, String.)
Public methodRemove (Inherited from DictionaryString, String.)
Public methodToString
Dump an Options object as a string
(Inherited from Options.)
Public methodToStringList
Return a StringList describing the options
(Inherited from Options.)
Public methodTryGetValue
Gets the value associated with the specified key.
(Inherited from DictionaryString, String.)
Top
Remarks

p4 help files

files -- List files in the depot

p4 files [ -a ] [ -A ] [ -e ] [ -m max ] file[revRange] ...
p4 files -U unloadfile ...

List details about specified files: depot file name, revision,
file, type, change action and changelist number of the current
head revision. If client syntax is used to specify the file
argument, the client view mapping is used to determine the
corresponding depot files.

By default, the head revision is listed. If the file argument
specifies a revision, then all files at that revision are listed.
If the file argument specifies a revision range, the highest revision
in the range is used for each file. For details about specifying
revisions, see 'p4 help revisions'.

The -a flag displays all revisions within the specific range, rather
than just the highest revision in the range.

The -A flag displays files in archive depots.

The -e flag displays files with an action of anything other than
deleted, purged or archived. Typically this revision is always
available to sync or integrate from.

The -m flag limits files to the first 'max' number of files.

The -U option displays files in the unload depot (see 'p4 help unload'
for more information about the unload depot).

See Also