使用cmd按照指定文件名字删除文件

目标:使用CMD删除文件夹内的包含特定字符串的文件

1.使用cmd获取输入的变量
2.将变量拼接成所需要的地址
3使用del进行删除文件


rem 1.input the pn
@echo off 

:begin

rem get the input

set input=
set foloer=C:\Users\\111\123\
set /p input=plear input PN:

rem ourt the information
echo Please confirm:%input%
echo %foloer%%input%*
echo 
rem del the pn in folder
del %foloer%%input%*
pause
rem 

你可能感兴趣的:(bat,command,pattern)