我正在尝试在Windows批处理文件中使用这些命令行:
SET mypath="%programfiles(x86)%\Directory\SubDirectory"
SET app2="com.estrongs.android.pop_4.1.6.8.9.3-604_minAPI14(armeabi^,armeabi-v7a^,x86)(nodpi)_apkmirror.com.apk"
If Not Exist "%mypath%\includes\apk\%app2%" (
Rem DO SOMETHING
) ELSE (
Rem DO SOMETHING ELSE
)
Run Code Online (Sandbox Code Playgroud)
但是我收到了这个错误:
(nodpi)_apkmirror.com.apk was unexpected at this time.
Run Code Online (Sandbox Code Playgroud)
执行批处理文件时出现此错误消息的原因是什么?