Package jadx.core.utils.files

Examples of jadx.core.utils.files.InputFile


      throw new JadxException("Empty file list");
    }
    inputFiles.clear();
    for (File file : files) {
      try {
        inputFiles.add(new InputFile(file));
      } catch (IOException e) {
        throw new JadxException("Error load file: " + file, e);
      }
    }
    parse();
View Full Code Here


    for (int i = 1; i < args.length; i++) {
      File f = new File(args[i]);
      if (f.isDirectory()) {
        addFilesFromDirectory(f, inputFiles);
      } else {
        inputFiles.add(new InputFile(f));
      }
    }
    for (InputFile inputFile : inputFiles) {
      LOG.info("Loaded: {}", inputFile.getFile());
    }
View Full Code Here

    for (File file : files) {
      if (file.isDirectory()) {
        addFilesFromDirectory(file, inputFiles);
      }
      if (file.getName().endsWith(".dex")) {
        inputFiles.add(new InputFile(file));
      }
    }
  }
View Full Code Here

TOP

Related Classes of jadx.core.utils.files.InputFile

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.