1. ホーム
  2. windows

[解決済み] バッチファイル内部からファイルが存在するかどうかを確認する方法【重複】について

2022-03-19 17:48:34

質問

あるファイルが存在する場合のみ、ユーティリティを実行する必要があります。Windowsのバッチでこれを行うにはどうすればよいですか?

どのように解決するのですか?

if exist <insert file name here> (
    rem file exists
) else (
    rem file doesn't exist
)

または1行で(1つの動作だけが必要な場合)。

if exist <insert file name here> <action>

例えば、このファイルが存在する場合、autoexec.bat上でメモ帳を開きます。

if exist c:\autoexec.bat notepad c:\autoexec.bat