Searched refs:relativePathSegs (Results 1 – 1 of 1) sorted by relevance
67 public static void addToZip(ZipOutputStream out, File file, List<String> relativePathSegs) in addToZip() argument69 relativePathSegs.add(file.getName()); in addToZip()72 relativePathSegs.add("/"); in addToZip()74 ZipEntry zipEntry = new ZipEntry(buildPath(relativePathSegs)); in addToZip()88 addToZip(out, subFile, relativePathSegs); in addToZip()91 relativePathSegs.remove(relativePathSegs.size()-1); in addToZip()94 relativePathSegs.remove(relativePathSegs.size()-1); in addToZip()103 private static String buildPath(List<String> relativePathSegs) { in buildPath() argument105 for (String segment : relativePathSegs) { in buildPath()