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を与えます
FILE_BILL が 1 の場合に何かを実行し、0 の場合に何かを実行する If ステートメントを書きたいのですが、どうすればよいですか?
if %FILE_BILL% == 1 (
echo the file exists
) else (
echo the file does not exist
)
私はいつもメッセージを受け取りますfile does not exist