Associate
- Joined
- 17 Nov 2008
- Posts
- 383
is there a easy way to put videos into individual folders with out donig them one by one . so it will be name of film and the film inside the folder . cheers
@ECHO OFF
FOR /f "tokens=1-2 delims=." %%A IN ('dir /b *.avi') DO (
mkdir "%%A"
move "%%A.%%B" "%%A"
)
no good the file came up with sort ran it as administer nothing happened using win 7 64bit .cheers
Aww, beaten to it by Pho. Though I was going to suggest PowerShell!![]()
@ECHO OFF
FOR /f "tokens=1-2 delims=." %%A IN ('dir /b *.avi') DO (
mkdir "%%A"
move "%%A.%%B" "%%A"
)
pause
the files are not on my c drive Internal Hard Drives f. is there another way off doing it like free software . cheers