• 大小: 4.55MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-09-30
  • 语言: 其他
  • 标签: adb  

资源简介

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.xml
     文件      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个文件信息

评论

共有 条评论