ClientApi::SetTrustFile( const char *c )
Sets the location of the trustfile using the full pathname to the file and not a directory.
Virtual? |
No |
|
Class |
||
Arguments |
|
the full path name of the new trust file |
Returns |
|
Notes
SetTtrustFile()
does not permanently set the P4TRUST
value in the
environment or registry. The new setting applies only to commands
executed by calling this ClientApi
object’s Run()
method.
Example
The following example sets a trust file location by calling SetTrustFile()
.
ClientApi client; StrBuf sb; sb = "/tmp/trustfile.txt"; client.SetTrustFile( &sb );