INNER CODE UNIT · Java

outPutPath

Tencent/VasDolly · command/src/main/java/com/tencent/vasdolly/command/Main.java:118

                            String outPutPath = args[args.length - 1].trim();
                            File outputDir = new File(outPutPath);
                            if (outputDir.exists()) {
                                if (!outputDir.isDirectory() && !outputDir.getAbsolutePath().endsWith(".apk")) {
                                    System.out.print("\n\nThe output path must be a directory or apk path!");
                                    return;
                                }
                            } else {
                                if (!outputDir.mkdirs()) {
                                    System.out.print("\n\nThe output path mkdirs directory fail!");
                                    return;
                                }
                            }

                            String channels = "";
                            if (args.length == 5) {
                                isFastMode = false;
                                if (command1.equals(cmdChannel) || command1.equals(cmdMultiThreadChannel)) {

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…