1、设置txt文件默认打开方式为你需要的软件
2、新建log.txt文件,输入一下内容保存后重命名为log.bat
@echo off
cls
color 0a
echo.
adb pull /sdcard/ttt/exception.log E:\log
rem导出 /sdcard/ttt/目录下的exception.log文件 到e盘 log目录
start "" "E:\log\exception.log"
rem 使用默认软件打开exception.log文件
rem start notepad "E:\log\exception.log"
rem 调用记事本打开test.txt
rem 为注释命令,相当于// 或 #。
start "" "c:\windows"
start explorer "c:\windows"
rem 打开文件夹
start "" "c:\test.doc"
start winword "c:\test.doc"
rem 调用word打开test.doc
start "" "c:\test.txt"
start notepad "c:\test.txt"
rem 调用记事本打开test.txt
打开cmd并且执行命令代码
@echo off
start cmd /k "cd/d E:\工作目录\2017工作目录\NewUnityProject1 &&scene.exe -batchmode &&taskkill /f /t /im cmd.exe"
关闭cmd
@echo off
start cmd /k "taskkill /f /t /im scene.exe &&taskkill /f /t /im cmd.exe"
https://zhidao.baidu.com/question/134509961282504485.html
https://blog.csdn.net/qq_26597393/article/details/70324855