*/
/* package */File getProjectLocation(File workspaceLocation, File project)
throws IOException, URISyntaxException {
File location = new File(project, ReadWorkspaceLocations.BINARY_LOCATION_FILE);
if (location.exists()) {
SafeChunkyInputStream fileInputStream = null;
try {
fileInputStream = new SafeChunkyInputStream(location);
DataInputStream dataInputStream = new DataInputStream(fileInputStream);
String file = dataInputStream.readUTF().trim();
if (file.length() > 0) {
if (!file.startsWith("URI//")) {