list_stacks_by_path(path,
stacks=None,
cache=None)
| source code
|
List ROS stacks within the specified path.
Optionally, a cache dictionary can be provided, which will be updated
with the stack->path mappings. list_stacks_by_path() does NOT returned
cached results -- it only updates the cache.
- Parameters:
path (str) - path to list stacks in
stacks ([str]) - list of stacks to append to. If stack is already present in
stacks, it will be ignored.
cache ({str: str}) - (optional) stack path cache to update. Maps stack name to
directory path.
- Returns: [str]
- complete list of stack names in ROS environment. Same as stacks
parameter.
|