Skip to content

Instantly share code, notes, and snippets.

@milnak
Created July 13, 2021 15:53
Show Gist options
  • Save milnak/c8af7cb5c605f15997a9779edf67097e to your computer and use it in GitHub Desktop.
Save milnak/c8af7cb5c605f15997a9779edf67097e to your computer and use it in GitHub Desktop.
Convert mame folder ini file to CSV rom=value format
@echo off
setlocal enabledelayedexpansion
REM Convert mame folder ini file to CSV rom=value format
if "%~1" equ "" (
echo Need ini filename.
goto :eof
)
echo "rom","value"
set section=
for /f "usebackq tokens=*" %%f in ("%~1") do (
set line=%%f
if "!line:~0,1!" neq ";" (
REM Change ""[0.233]" to "0.223"
if "!line:~0,1!" equ "[" (
set section=!line:~1,-1!
) else (
if "!section!" neq "FOLDER_SETTINGS" (
echo "!line!","!section!"
)
)
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment