private void createSoftLinks(String fileName, String logLoc, String gameName) {
    String linkName;
    if (fileName.endsWith("boot.xml")) {
      linkName = String.format("%s%s.boot.xml", logLoc, gameName);
    } else if (fileName.contains("boot")) {
      linkName = String.format("%s%s.boot.tar.gz", logLoc, gameName);
    } else {
      linkName = String.format("%s%s.sim.tar.gz", logLoc, gameName);
    }

    try {
      Path link = Paths.get(linkName);
      Path target = Paths.get(fileName);
      Files.createSymbolicLink(link, target);
    } catch (FileAlreadyExistsException faee) {
      // Ignored
    } catch (IOException | UnsupportedOperationException e) {
      e.printStackTrace();
    }
  }