I would love to help... but they have me chained to a desk in the back room formatting PC's! aggh I must go before they see that i am gone!


But really, you should easily be able to take shawns code and feed it filenames from a recursive shelled DIR command.

code:

$folder = "c:\diablo"
shell '%comspec% /c dir $folder /s/b/a-d > %temp%\temp.dat'
$nul = open(1,"%temp%\temp.dat",2)
$file = readline(1)
do
? $file
$file = readline(1)
until @error <> 0

Bryce