I am fetching the WebContent Path of a Dynamic Web Project using the code shown below

static IPath getWebContentRootPath(IProject project) {
        if (project == null)
            return null;
        IPath path = null;
        IVirtualComponent component=null;
        try {

            component = ComponentCore.createComponent(project);

            if (component != null && component.exists()) {                  
                path = component.getRootFolder().getWorkspaceRelativePath();
            }

        }
        catch (NoClassDefFoundError e) {
                e.printStackTrace();
        }
        return path;
    }

This works well, even if you rename the WebContent Directory. However, I just deleted the WebContent directory and did a Ctrl+Z(Undo) which made the folder to come back again and tried to get the path but it wouldn't return the WebContent Path now, it would return the path of the Project. Is there a way to persistently get the WebContent Path dynamically?

link|improve this question

27% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.