Searched refs:relativePathSegs (Results 1 – 1 of 1) sorted by relevance
247 public static void addToZip(ZipOutputStream out, File file, List<String> relativePathSegs) in addToZip() argument249 relativePathSegs.add(file.getName()); in addToZip()252 relativePathSegs.add("/"); in addToZip()254 ZipEntry zipEntry = new ZipEntry(buildPath(relativePathSegs)); in addToZip()268 addToZip(out, subFile, relativePathSegs); in addToZip()271 relativePathSegs.remove(relativePathSegs.size()-1); in addToZip()274 relativePathSegs.remove(relativePathSegs.size()-1); in addToZip()340 private static String buildPath(List<String> relativePathSegs) { in buildPath() argument342 for (String segment : relativePathSegs) { in buildPath()