复制代码
- for /f "delims=" %%i in ('dir /s/b *.mp4 ^|findstr /v "afang.mp4"')do echo "%%i"
复制代码
- @echo off
- for /f "delims=" %%i in ('dir /b /s /a-d *.mp4') do (
- if "%%~nxi" neq "afang.mp4" (
- echo %%i
- )
- )
- pause
欢迎光临 批处理之家 (http://www.bathome.net/) | Powered by Discuz! 7.2 |