I'm doing this on Linux, so a working version for that would be via bash script:
PHP Code:
#!/bin/bash
WINEDIR='~/.wine/drive_c/Program Files/Sony'
OLDFOLD='EverQuest'
NEWFOLD='EQLite'
for i in `cat ~/bin/eqEssentials`
do
cp -r "$WINEDIR/$OLDFOLD/$i" "$WINEDIR/$NEWFOLD/"
done
This script depends on you having a plain text file of all the needed files saved in ~/bin/eqEssentials