Automating files transfer (movie collection)

  • Thread starter Thread starter SPG
  • Start date Start date

SPG

SPG

Soldato
Joined
28 Jul 2010
Posts
10,500
Currently all my movies are stored in one folder in there original file names, i am getting into XBMC and would like to put them all into there individual folder with the same file name. I could do it manually but it would take for ever and day to complete is there some freeware that can automate the task ?
 
Alas no

I left programming when it was 10 print "its cheaper at boots than dixons": 20 goto 10 Run era.

Time to google it guess.
 
As usual half the battle now is wording what you want, thanks for jogging the memory banks :)

@Echo off
for %%a in (*.*) do (
md "%%~na" 2>nul
move "%%a" "%%~na"
)
pause
 
Back
Top Bottom