ClientApi::SetCwdNoReload( const char * )
Sets the working directory to be used for this connection without
checking P4CONFIG
.
Virtual? |
No |
|
Class |
||
Arguments |
|
the new directory path |
Returns |
|
Notes
SetCwdNoReload()
does not permanently set a new working directory in the client
environment. The new setting applies only to commands executed by calling
this ClientApi
object’s Run()
method.
Unlike SetCwd()
, SetCwdNoReload()
ignores any P4CONFIG
files found in the new directory
hierarchy.
Example
The following code sets different working directories and displays them
with p4 info
.
ClientApi client; ClientUser ui; client.SetCwdNoReload( "C:\one" ); client.Run( "info", &ui ); client.SetCwdNoReload( "C:\two" ); client.Run( "info", &ui );