I need to move my randomized files to another directory. Can anyone help me with the right amount of code to accomplish this?
What I have is this:
REM MOVE TO THE RIGHT DIRECTORY
pushd %tmpDir%
setlocal EnableDelayedExpansion
for /f %%T in ('dir/s/b/a-d *.*') do (
ren "%%T" "!random!%%~nT.kvi" )
move %tmpDir%\*kvi "T:\Program\renamedFiles"
But I can't seem to get this to work, and I am fresh out of ideas
![Smile :-)](./images/smilies/icon_smile.gif)