代码:

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2020/11/11 14:04 
# @Author : ywy
import os, sys

path = r'xxxx'# 文件夹目录
files = os.listdir(path)  # 得到文件夹下的所有文件名称
out_path =r'xxxxx'  #输出文件夹
#路径上不要有中文!!!!!
s = []
for file in files:  # 遍历文件夹
    if file.find("dex") > 0:  ## 查找dex 文件
        sh = f'jadx -j 1 -r -d {out_path} {path}\\{file}'
        print(sh)
        os.system(sh)

 

 

转自:https://www.cnblogs.com/pythonywy/p/13958440.html

相关文章:

  • 2022-02-10
  • 2021-12-29
  • 2021-11-15
  • 2021-12-17
  • 2021-12-15
  • 2021-06-11
  • 2022-02-10
  • 2022-01-14
猜你喜欢
  • 2021-05-31
  • 2022-12-23
  • 2022-12-23
  • 2021-09-29
  • 2022-02-07
  • 2021-12-15
  • 2021-05-11
相关资源
相似解决方案