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?
NFO Export help
Re: NFO Export help
HiTetsujin 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?
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