我在 Windows 批处理中使用以下行
SET MOBILE_PATH=/mnt/sdcard/koinoxrista
SET FILE_BILL="adb shell ls %MOBILE_PATH% ^| find /c "Bill.txt" "
这条线adb shell ls %MOBILE_PATH% | find /c "Bill.txt"
给了我 1
我想编写一个 If 语句,如果 FILE_BILL 等于 1,则执行某些操作,如果等于 0,则执行其他操作。我该怎么做?
if %FILE_BILL% == 1 (
echo the file exists
) else (
echo the file does not exist
)
我总是收到消息file does not exist