rdbSetCurrentDirectory
rdbSetCurrentDirectory(t_sessionName t_pathToDirectory) =>t/nil
Description
Navigates to the specified directory in the Results Browser associated with the specified session.
Arguments
|
Specify |
|
Value Returned
|
Specified directory cannot be set as the current directory because of an error. |
Examples
The following example returns the name of the ADE session associated with the current window.
axlSession=axlGetWindowSession()
=> "fnxSession0"
The following examples navigate to the lf directory inside the simulation results of the results directory in the Results Browser associated with the specified session.
rdbSetCurrentDirectory(axlSession "/home/user/LoopFinder/simulation/lib/cell/maestro/results/maestro/ExplorerRun.0/1/test/psf/lf")
=> t
rdbSetCurrentDirectory("fnxSession0" "/home/user/LoopFinder/simulation/lib/cell/maestro/results/maestro/ExplorerRun.0/1/test/psf/lf")
=> t
The following example navigates to the lf directory inside the simulation results stored in the specified directory when Virtuoso Visualization and Analysis XL is open in standalone mode.
rdbSetCurrentDirectory("unbound" "/home/user/LoopFinder/simulation/lib/cell/maestro/results/maestro/ExplorerRun.0/1/test/psf/lf")
=> t
Return to top