标签: batch-file
如果条件1满足,则如何创建temp1等临时文件;如果条件2满足使用Windows批处理脚本,则如何创建临时文件...
答案 0 :(得分:0)
试试这个:
@echo off set /p "test=Enter 1 or 2 : " if "%test%"=="1" echo ok >temp1.log if "%test%"=="2" echo ok >temp2.log