alias mp3f {
var %t = $findfile(D:\,*.mp3,0)
while (%t > 0) {
write D:\found.txt $findfile(D:\,*.mp3,%t)
dec %t
}
echo -st Finished!
}

With this script i want to make a list of all mp3s on D:\ partition, but...well, here comes my question, because $findfile here is incredibly slow and making list with it would take ages, any1 knows faster way?