It's all about the answers!

Ask a question

How to traverse through all the files in a workspace/stream


Vinod Kumar (9612010) | asked Oct 21 '08, 2:00 a.m.
JAZZ DEVELOPER
How to walk through the workspace or stream tree from a stand along application using Jazz API?

One answer



permanent link
Dmitry Karasik (1.8k11) | answered Oct 21 '08, 3:56 a.m.
JAZZ DEVELOPER
How to walk through the workspace or stream tree from a stand along
application using Jazz API?

IConfiguration cfg = workspace.configuration(component);
IFolderHandle root = cfg.rootFolderHandle(monitor);

then call cfg.childEntries() repeatedly to get the children.

- Dmitry

Your answer


Register or to post your answer.