资源简介
adb.exe 下载,版本1.0.39 ,直接解压文件,设置环境变量就可以使用,或者替换路径..\sdk\platform-tools\adb.exe
代码片段和文件信息
#!/usr/bin/env python
# Copyright (c) 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import os
import sys
version = sys.version_info[:2]
if version != (2 7):
sys.stderr.write(‘Systrace does not support Python %d.%d. ‘
‘Please use Python 2.7.\n‘ % version)
sys.exit(1)
systrace_dir = os.path.abspath(
os.path.join(os.path.dirname(__file__) ‘catapult‘ ‘systrace‘))
sys.path.insert(0 systrace_dir)
def RemoveAllStalePycFiles(base_dir):
“““Scan directories for old .pyc files without a .py file and delete them.“““
for dirname _ filenames in os.walk(base_dir):
if ‘.git‘ in dirname:
continue
for filename in filenames:
root ext = os.path.splitext(filename)
if ext != ‘.pyc‘:
continue
pyc_path = os.path.join(dirname filename)
py_path = os.path.join(dirname root + ‘.py‘)
try:
if not os.path.exists(py_path):
os.remove(pyc_path)
except OSError:
# Wrap OS calls in try/except in case another process touched this file.
pass
try:
os.removedirs(dirname)
except OSError:
# Wrap OS calls in try/except in case another process touched this dir.
pass
if __name__ == ‘__main__‘:
RemoveAllStalePycFiles(os.path.dirname(__file__))
from systrace import run_systrace
sys.exit(run_systrace.main())
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-12-31 13:11 adb\
文件 1784320 2017-12-14 05:24 adb\adb.exe
文件 97792 2017-12-14 05:24 adb\AdbWinApi.dll
文件 62976 2017-12-14 05:24 adb\AdbWinUsbApi.dll
目录 0 2017-12-31 13:11 adb\api\
文件 140715 2017-12-14 05:24 adb\api\annotations.zip
文件 3857974 2017-12-14 05:24 adb\api\api-versions.xm
文件 145920 2017-12-14 05:24 adb\dmtracedump.exe
文件 333824 2017-12-14 05:24 adb\etc1tool.exe
文件 853504 2017-12-14 05:24 adb\fastboot.exe
文件 43008 2017-12-14 05:24 adb\hprof-conv.exe
目录 0 2017-12-31 13:11 adb\lib64\
文件 1272189 2017-12-14 05:24 adb\lib64\libc++.so
文件 210625 2017-12-14 05:24 adb\libwinpthread-1.dll
文件 345600 2017-12-14 05:24 adb\make_f2fs.exe
文件 1184 2017-12-14 05:24 adb\mke2fs.conf
文件 1034240 2017-12-14 05:24 adb\mke2fs.exe
文件 323847 2017-12-14 05:24 adb\NOTICE.txt
文件 38 2017-12-14 05:24 adb\source.properties
文件 793600 2017-12-14 05:24 adb\sqlite3.exe
目录 0 2017-12-31 13:11 adb\systrace\
目录 0 2017-12-31 13:11 adb\systrace\catapult\
目录 0 2017-12-31 13:11 adb\systrace\catapult\common\
目录 0 2017-12-31 13:11 adb\systrace\catapult\common\battor\
目录 0 2017-12-31 13:11 adb\systrace\catapult\common\battor\battor\
文件 3872 2017-12-14 05:24 adb\systrace\catapult\common\battor\battor\battor_binary_dependencies.json
文件 241 2017-12-14 05:24 adb\systrace\catapult\common\battor\battor\battor_error.py
文件 16186 2017-12-14 05:24 adb\systrace\catapult\common\battor\battor\battor_wrapper.py
文件 3759 2017-12-14 05:24 adb\systrace\catapult\common\battor\battor\battor_wrapper_devicetest.py
文件 14003 2017-12-14 05:24 adb\systrace\catapult\common\battor\battor\battor_wrapper_unittest.py
文件 1012 2017-12-14 05:24 adb\systrace\catapult\common\battor\battor\__init__.py
............此处省略387个文件信息
相关资源
- 这个是adb工具包
- adb动态库资源
- adb4.4.2.rar
- 中兴B860A机顶盒ADB密码计算器
- ADB win10 64位驱动
- Badboy安装包54726
- 编译Adb源码VS2012)
- adb工具包adb工具包
- 基于视频的车辆跟踪
- 镁光nand flash MT29F32G08CBADA MT29F32G08CBA
- ADBLOG.zip
- windows下编译adb源码
- Chrome AdBlock_v3.22.1
- ADB 安装驱动包支持win10
- win10adb驱动
- high-speed digital design/a hnadbook of black
- 超好用的公路创建插件RoadBuilder.zip
- adb 1.0.41.zip
- Adb工具及测试模式开启
- VirtualBreadboard4.3.8.msi
- 华为手机ADB及HDB驱动
- win10(ADB包)
- adb&libwinhthread;-1.dll.rar
- Broadband Dielectric Spectroscopy
- 改码adb批处理20181021.rar
- VirtualBreadboard/vjredist
- badboy安装包
- Modern Antenna Hnadbook - Constantine A. Balan
- mariadb10.4.7的rpm包及安装所需要的依赖
- 新出炉的ADB 支持所有的中文命令
评论
共有 条评论