IProject project = ResourcesPlugin.getWorkspace().getRoot().getProject("myProject"); if (project.isAccessible()) { System.out.println("Project is accessible"); } else { System.out.println("Project is not accessible"); }This is an example of the usage of the IProject isAccessible method in the Eclipse Platform. The package library is org.eclipse.core.resources.