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?