protected static String buildLocationPath(String property, String append, String wwDir) {
    String path = propertyToPath(property);

    if (append != null && append.length() != 0) path = WWIO.appendPathPart(path, append.trim());

    if (wwDir != null && wwDir.length() != 0) path = WWIO.appendPathPart(path, wwDir.trim());

    return path;
  }