バッチファイル内の2つのファイルを比較し、それらが一致するかどうかに基づいてアクションを実行するにはどうすればよいですか?私は次のようなことを試しました:
if file1.txt NEQ file2.txt goto label
しかし、ファイルではなく実際の文字列「file1.txt」を比較します。 COMPコマンドについて読みましたが、ifステートメントに入れても機能しないようです。誰かがこれを行う方法を知っていますか?申し訳ありませんが、私はめったにバッチファイルを使用せず、それらについての経験がほとんどありません。
前もって感謝します。
「FC」コマンドを使ってエラーレベルを確認できると思います。ここにいくつかのコードがあります:
@echo off
:main
fc c:\filename r:\filemame > nul
if errorlevel 1 goto error
:next
echo insert next CD
pause
goto main
:error
echo failed check
( http://www.computing.net/answers/dos/batch-file-command/15753.html からプルされます)
COMPプログラムは実際にはかなり使いやすいようです。 Yahooの回答について この質問 を参照してください。
comp /?
は、プログラムのヘルプテキストを出力します(/?
引数(任意のネイティブWindowsコマンドラインプログラム)。これにより、上記のリンクされた質問の回答に表示されるのと同じテキストが出力されます。
Yahoo Answerのコンテンツ:
C:\>comp /?
Compares the contents of two files or sets of files.
COMP [data1] [data2] [/D] [/A] [/L] [/N=number] [/C] [/OFF[LINE]]
data1 Specifies location and name(s) of first file(s) to compare.
data2 Specifies location and name(s) of second files to compare.
/D Displays differences in decimal format.
/A Displays differences in ASCII characters.
/L Displays line numbers for differences.
/N=number Compares only the first specified number of lines in each file.
/C Disregards case of ASCII letters when comparing files.
/OFF[LINE] Do not skip files with offline attribute set.
To compare sets of files, use wildcards in data1 and data2 parameters.
以下の例を使用して、ファイルの違いに基づいてレポートを作成します。
set %Batch_Work_Space_Dir%=folder for your batch file and temp resource files
set file_1=name of file
set file_2=name of file
fc %file_1% %file_1%t > %Batch_Work_Space_Dir%\Are_They_Different.txt
powershell -command "(Get-Content %Batch_Work_Space_Dir%\Are_They_Different.txt) | select -skip 1 | Set-Content %Batch_Work_Space_Dir%\Are_They_Different.txt"
set /p Diff_Found=<%Batch_Work_Space_Dir%\Are_They_Different.txt
if %Diff_Found:~0,17%" == "FC: no difference" (
execute commands
)