@echo offfor /f "tokens=1,2* delims=_" %%a in ('dir /a-d/b *.jpg') do ( if not exist "%%~a" md "%%~a" move "%%~a_%%~b" "%%~a\")pause