我怎样才能做一个“你确定"吗?在 Windows 批处理文件中提示? [英] How can I make an "are you sure" prompt in a Windows batchfile?

查看:22
本文介绍了我怎样才能做一个“你确定"吗?在 Windows 批处理文件中提示?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

I have a batch file that automates copying a bunch of files from one place to the other and back for me. Only thing is as much as it helps me I keep accidentally selecting that command off my command buffer and mass overwriting uncommited changes.

What code would I need for my .bat file to make it say "are you sure", and make me type "y" before it ran the rest of the file? If anything but "y" is typed it should exit execution on that line.

When I call "exit;" it closes cmd.exe which is not what I want.

解决方案

You want something like:

@echo off
setlocal
:PROMPT
SET /P AREYOUSURE=Are you sure (Y/[N])?
IF /I "%AREYOUSURE%" NEQ "Y" GOTO END

echo ... rest of file ...


:END
endlocal

这篇关于我怎样才能做一个“你确定"吗?在 Windows 批处理文件中提示?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆