安卓自动化的一些API

python 复制代码
def run_adb_command():
    pass

创建指定大小的文件

python 复制代码
def create_random_file(file_path: str, file_size: int = 1024):
        # 1M = 1024 * 1024
        if file_path.endswith("/"):
            raise Exception(f"请输入正确的文件路径:{file_path}")
        file_name = file_path.rsplit("/", 1)[1]
        cmd = "dd if=/dev/zero of={} bs={} count=1".format(file_path, file_size)
        result = run_adb_command(func=cmd)
        if file_name in run_adb_command(func=f"ls {file_path}"):
            return True
        raise Exception(f"创建文件失败: {result}")

查看安卓系统时间

python 复制代码
def get_android_time(format: str = "+%Y%m%d%H%M%S"):
        """
            format:
                "+%Y%m%d%H%M%S": 20240612042045
                "+%F": 2024-06-12
                "+%R": 04:20
                "+%s": 1718241156
        """
        return run_adb_command(func=f"date {format}")
相关推荐
Crossoads36 分钟前
【汇编语言】端口 —— 「从端口到时间:一文了解CMOS RAM与汇编指令的交汇」
android·java·汇编·深度学习·网络协议·机器学习·汇编语言
AAA.建材批发刘哥44 分钟前
Linux快速入门-Linux文件系统管理
linux·运维·服务器·c语言·学习方法
LKAI.2 小时前
搭建Elastic search群集
linux·运维·elasticsearch·搜索引擎
li_liuliu2 小时前
Android4.4 在系统中添加自己的System Service
android
青木沐3 小时前
Jenkins介绍
运维·jenkins
WTT00114 小时前
2024楚慧杯WP
大数据·运维·网络·安全·web安全·ctf
苹果醋34 小时前
React源码02 - 基础知识 React API 一览
java·运维·spring boot·mysql·nginx
C4rpeDime4 小时前
自建MD5解密平台-续
android
日记跟新中4 小时前
Ubuntu20.04 修改root密码
linux·运维·服务器