Lines Matching defs:destFile
91 File destFile = new File(utility.getOutPath());
93 if (!destFile.exists()) {
94 if (!destFile.mkdirs()) {
578 File destFile = new File(tempPath);
579 dataTransfer(zipFile, entry, destFile);
600 * @param destFile output file path
603 private static void dataTransfer(ZipFile zipFile, ZipEntry entry, File destFile) throws BundleException {
607 if (!FileUtils.matchPattern(destFile.getCanonicalPath())) {
608 LOG.error("Input invalid file " + destFile.getCanonicalPath());
609 throw new BundleException("Input invalid file" + destFile.getCanonicalPath());
612 fileOutStream = new FileOutputStream(destFile);
652 File destFile = new File(tempPath);
653 if (destFile != null && destFile.getParentFile() != null && !destFile.getParentFile().exists()) {
654 destFile.getParentFile().mkdirs();
656 dataTransfer(zipFile, entry, destFile);
685 File destFile = new File(filePath);
686 if (destFile != null && destFile.getParentFile() != null && !destFile.getParentFile().exists()) {
687 destFile.getParentFile().mkdirs();
691 dataTransfer(zipFile, entry, destFile);
700 dataTransfer(zipFile, entry, destFile);
1664 File destFile = new File(filePath);
1665 if (destFile != null && destFile.getParentFile() != null && !destFile.getParentFile().exists()) {
1666 destFile.getParentFile().mkdirs();
1668 dataTransfer(zipFile, entry, destFile);