for /r %%a in (*.mp4) do if /i "%%~xa"==".mp4" if exist "%%~a" del /f /q "%%~a"由于你连文件名都不知道。所以这个代码只要被它搜索到的所有mp4文件,都会被删除。
嗯,你现在是想做什么呢