ファイルが空かどうかをチェックするためにグーグルが私に投げるいくつかの方法がありますが、私は反対のことをする必要があります。
If (file is NOT empty)
do things
これをバッチで行うにはどうすればよいですか?
ファイルが空かどうかをチェックするためにグーグルが私に投げるいくつかの方法がありますが、私は反対のことをする必要があります。
If (file is NOT empty)
do things
これをバッチで行うにはどうすればよいですか?
for /f %%i in ("file.txt") do set size=%%~zi
if %size% gtr 0 echo Not empty
これはうまくいくはずです:
for %%R in (test.dat) do if not %%~zR lss 1 echo not empty
help if
NOT
の直後にを追加してif
、比較ステートメントを反転できることを示しています
set "filter=*.txt"
for %%A in (%filter%) do if %%~zA==0 echo."%%A" is empty
help for
~zA 部分に関する説明を表示するには、コマンド ラインに入力します。
サブルーチン/外部バッチ ファイルを活用して、この正確な問題を解決する便利なパラメーター修飾子を取得できます。
@Echo OFF
(Call :notEmpty file.txt && (
Echo the file is not empty
)) || (
Echo the file is empty
)
::exit script, you can `goto :eof` if you prefer that
Exit /B
::subroutine
:notEmpty
If %~z1 EQU 0 (Exit /B 1) Else (Exit /B 0)
あるいは
notEmpty.bat
@Echo OFF
If %~z1 EQU 0 (Exit /B 1) Else (Exit /B 0)
yourScript.bat
Call notEmpty.bat file.txt
If %errorlevel% EQU 0 (
Echo the file is not empty
) Else (
Echo the file is empty
)