:begin
cls
set flag=0
set input=
set /p input= 请输入要查询的卷标:
if "%input%"=="" goto begin
for %%i in (c d e f g h i j k l m n o p q r s t u v w x y z) do (
for /f "tokens=4" %%j in ('vol %%i: 2^>nul') do if /i "%%j"=="%input%" call :success %%i&set flag=1
)
if %flag% neq 1 echo 没有卷标为 %input% 的分区
pause
goto begin