tomdrake, on Jun 27 2005, 11:04 AM, said:
I have the same problem (slow list loads because of network), while your idea is much more automatic (and I would perfer this), you can make a .map file using Excel and ASAP Utilities' Import File function. I haven't got around to actually doing it, but you can import a list of the files in the directory, then I copy another column and Replace ".zip" with "" (nothing) to make my name colum, then export the whole thing to txt. A little messy, but a doable solution.
<{POST_SNAPBACK}>
Hey that's a great solution! I didn't really know what the map file did.
Here's a quick way to create the map file without excel.
Go to a command prompt, go into your roms dir and do
for %s in (*.zip) do echo %s@%s* >> gamelist.map
Now notepad gamelist.map and do a find and replace
.zip@ with .zip|
Then replace:
.zip* with (nothing)
Save it and you've got a map file that works. You can even keep it on the share and it's fast as lightning. Thanks for this tip.