HELP: How to get the classpath of the current project? Permanently deleted user 创建于 2003年06月18日 16:12 In my plugin I need to find a special class in the output folder/class directory.Does anybody knows how to get the classpath of the current project?summerly GreetzThilo
I found it out:
Project project = (Project) event.getDataContext().getData(DataConstants.PROJECT);
ProjectRootManager projectManager = ProjectRootManager.getInstance(project);
projectManager.getFullClassPath();