script/图片落盘.bat

12 lines
314 B
Batchfile
Raw Normal View History

2025-04-29 14:00:10 +08:00
@echo off
2025-04-29 14:14:46 +08:00
set TOOLCHAIN_PATH=.\win
set DOWNLOAD_PATH=..\sprecord
2025-04-29 14:00:10 +08:00
@REM 切换到工具链目录
cd %TOOLCHAIN_PATH%
@REM 重新挂载根目录为可读写
2025-04-29 14:17:47 +08:00
.\hdc.exe shell mount -o remount,rw /
.\hdc.exe file send %DOWNLOAD_PATH%/librtsprecord.z.so /system/lib/module/libhiserialsdk.z.so
2025-04-29 14:07:56 +08:00
2025-04-29 14:17:21 +08:00
echo "操作完成"
pause