Sorry to reply to my own thread, but I found a solution and I think everyone who's run into this issue (using any emulator) can benefit:
Use the following script to auto-rename the files and remove the spaces. Simply copy and paste this into notepad and then save the file as "RemoveSpaces.bat":
:renameNoSpace [/R] [FolderPath]
@echo off
setlocal disableDelayedExpansion
if /i "%~1"=="/R" (
set "forOption=%~1 %2"
set "inPath="
) else (
set "forOption="
if "%~1" neq "" (set "inPath=%~1\") else set "inPath="
)
for %forOption% %%F in ("%inPath%* *") do (
if /i "%~f0" neq "%%~fF" (
set "folder=%%~dpF"
set "file=%%~nxF"
setlocal enableDelayedExpansion
echo ren "!folder!!file!" "!file: =!"
ren "!folder!!file!" "!file: =!"
endlocal
)
)
Then, copy that batch file into the directory your roms are stored in. Then, using a command prompt, navigate to that directory and run:
RemoveSpaces.bat /r
I did it and not only does it work perfectly, EmuMovies still finds the proper artwork for all the files. For more information, go here:
http://stackoverflow.com/questions/11270453/how-to-remove-spaces-from-file-names-in-bulkI hope this will help anyone else who's running into the same issue!