Is there any API available to find a resoruce(java file) in Eclipse workspace tree when a resource name is given? I mean recursively.
Thanks.
Tim.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can search at any level of the workspace, even the top starting with
org.eclipse.core.resources.ResourcesPlugin.getWorkspace(). Then use something like:See the javadoc for
org.eclipse.core.resources.IResource.accept(IResourceVisitor)for more information.PW