src/main/java/org/apache/cxf/cwiki/SiteExporter.java [592:599]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                File file = new File(outputDir, dirName);
                if (!file.exists()) {
                    callSvn("mkdir", file.getAbsolutePath());
                    file.mkdirs();
                }
                file = new File(file, filename);
                boolean exists = file.exists();
                FileOutputStream out = new FileOutputStream(file);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/cxf/cwiki/SiteExporter.java [650:657]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        File file = new File(outputDir, dirName);
        if (!file.exists()) {
            callSvn("mkdir", file.getAbsolutePath());
            file.mkdirs();
        }
        file = new File(file, filename);
        boolean exists = file.exists();
        FileOutputStream out = new FileOutputStream(file);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



