int modulesIndex = path.lastIndexOf(modules);
// contains module name
int moduleIndex = path.indexOf("/", modulesIndex + modules.length()); // NOI18N
String modulePath = path.substring(0, moduleIndex);
YiiModule yiiModule = YiiModuleFactory.create(PhpModule.Factory.forFileObject(fileObject));
FileObject webroot = yiiModule.getWebroot();
if (webroot == null) {
return null;
}
return webroot.getFileObject(modulePath);
}