NFO Export help

If you made a script you can offer it to the others here, or ask help to improve it. You can also report here bugs & problems with existing scripts.
Post Reply
Tetsujin
Posts: 13
Joined: 2012-12-09 03:04:40

NFO Export help

Post 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?
kgytopi
Posts: 51
Joined: 2007-11-02 22:13:31
Location: Hungary, Budapest

Re: NFO Export help

Post 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
Tetsujin
Posts: 13
Joined: 2012-12-09 03:04:40

Post by Tetsujin »

That worked GREAT!
Thank you
Post Reply