Searched refs:relativePathSegs (Results 1 – 1 of 1) sorted by relevance
230 public static void addToZip(ZipOutputStream out, File file, List<String> relativePathSegs) in addToZip() argument232 relativePathSegs.add(file.getName()); in addToZip()235 relativePathSegs.add("/"); in addToZip()237 ZipEntry zipEntry = new ZipEntry(buildPath(relativePathSegs)); in addToZip()251 addToZip(out, subFile, relativePathSegs); in addToZip()254 relativePathSegs.remove(relativePathSegs.size()-1); in addToZip()257 relativePathSegs.remove(relativePathSegs.size()-1); in addToZip()323 private static String buildPath(List<String> relativePathSegs) { in buildPath() argument325 for (String segment : relativePathSegs) { in buildPath()