I need to list all linked folders of a given project.
I have access to IProject instance, but i do not find any API to get linked folders. Is there any way i can achieve this?
Try using the accept method and use a visitor to retrieve all child
IFolders and you can use IResource's isLinked() method?