Page 1 of 1

NFO Export help

Posted: 2012-12-13 00:40:06
by Tetsujin
Looking for help with the NFO export script. I would like the script to create a folder using the movie name and place the .NFO inside that folder. Alas I have NO programming skills beyond DOS batch files from the 80's.
Can anyone point me in a direction?

Re: NFO Export help

Posted: 2012-12-13 16:29:48
by kgytopi
Tetsujin wrote:Looking for help with the NFO export script. I would like the script to create a folder using the movie name and place the .NFO inside that folder. Alas I have NO programming skills beyond DOS batch files from the 80's.
Can anyone point me in a direction?
Hi

1. Create one anything.bat file
2. Copy this code
3. Save the file
4. Run

Code: Select all

MODE CON CP SELECT=437
for %%x in (*.NFO) do mkdir "%%~nx"

### pause

for %%x in (*.NFO) do move /-Y "%%x" "%%~nx"

### pause

MODE CON CP SELECT=852

Posted: 2012-12-17 22:40:18
by Tetsujin
That worked GREAT!
Thank you