Searched refs:relativePathSegs (Results 1 – 1 of 1) sorted by relevance
277 public static void addToZip(ZipOutputStream out, File file, List<String> relativePathSegs) in addToZip() argument279 relativePathSegs.add(file.getName()); in addToZip()282 relativePathSegs.add("/"); in addToZip()284 ZipEntry zipEntry = new ZipEntry(buildPath(relativePathSegs)); in addToZip()298 addToZip(out, subFile, relativePathSegs); in addToZip()301 relativePathSegs.remove(relativePathSegs.size()-1); in addToZip()304 relativePathSegs.remove(relativePathSegs.size()-1); in addToZip()370 private static String buildPath(List<String> relativePathSegs) { in buildPath() argument372 for (String segment : relativePathSegs) { in buildPath()