How to programatically retrieve all repository file names of a component
Hello All,
Is it possible to get the repository file names of the component? from the below code I can only get the folder name. Can't get the child entries from that folder (Here i use SCM Java API)
IConfiguration compConfig = workspaceConnection.configuration(compHandle);
Map<String, IVersionableHandle> projectFolders = compConfig.childEntriesForRoot(null);
List<IVersionable> items = compConfig.fetchCompleteItems(new ArrayList<IVersionableHandle> (projectFolders.values()), null);
Here, "items" returns only the folder name (like .rtcmetadata, Src) cant get child entries from the folder.
Please help me in this situation.
Thank you.
Is it possible to get the repository file names of the component? from the below code I can only get the folder name. Can't get the child entries from that folder (Here i use SCM Java API)
IConfiguration compConfig = workspaceConnection.configuration(compHandle);
Map<String, IVersionableHandle> projectFolders = compConfig.childEntriesForRoot(null);
List<IVersionable> items = compConfig.fetchCompleteItems(new ArrayList<IVersionableHandle> (projectFolders.values()), null);
Here, "items" returns only the folder name (like .rtcmetadata, Src) cant get child entries from the folder.
Please help me in this situation.
Thank you.