Attract-Mode Support Forum
Attract-Mode Support => General => Topic started by: pghretroguy on December 21, 2016, 06:27:09 AM
-
Does anyone know a filter param for MAME Libretro to filter out games with no wheel art? Thanks!!!!!
-
@pghretroguy
>Linux
have a look here (http://unix.stackexchange.com/questions/178321/diff-two-directories-but-ignore-the-extensions)
for example :
folder /home/your_username/1 contains rom-files
folder /home/your_username/2 contains image-files
this shows all rom-files from folder 1, that doesn't have an existing (or not correct named) image-file in folder 2
comm -23 <(find /home/your_username/1 -type f -exec bash -c 'basename "${0%.*}"' {} \; | sort) <(find /home/your_username/2 -type f -exec bash -c 'basename "${0%.*}"' {} \; | sort)
with this information, you can search for the explicit image-file
>Windows
@echo off &setlocal
set romfolder=C:\1
set imagefolder=C:\2
for %%a in ("%romfolder%\*.*") do if not exist "%imagefolder%\%%~na.*" echo %%~na%%~xa no image found
pause
-
Amazing. Thank you!
-
I can modify my mamesoftwareparser ruby script to include this feature. I have an idea to rework the script and make it more useful for others.
-
comm -23 <(find /home/pi/RetroPie/roms/mame-libretro -type f -exec bash -c 'basename "${0%.*}"' {} \; | sort) <(find /home/pi/RetroPie/roms/mame-libretro/snap -type f -exec bash -c 'basename "${0%.*}"' {} \; | sort)
-
comm -23 <(find /home/pi/RetroPie/roms/mame-libretro -type f -exec bash -c 'basename "${0%.*}"' {} \; | sort) <(find /home/pi/RetroPie/roms/mame-libretro/snap -type f -exec bash -c 'basename "${0%.*}"' {} \; | sort)
So I run that it seems to return every value and rom set. Any ideas? Thanks!!!!