You could do it with DirUse.exe provided they are all NTFS or DOS DIR would do it as well.

So basically, do a DIR, pipe it through find to keep the file small and read the last line of the file.

code:
break on

$ShellCMD = '%comspec% /c dir /w /s "C:\Documents and Settings\Default User" | find /i "file(s)" >%temp%\dirlist.txt'
shell $ShellCMD

If Open(1,"%temp%\dirlist.txt") = 0
$x = ReadLine(1)
WHILE @error = 0
$x = ReadLine(1)
If $x <> ""
$y = $x
EndIf
LOOP
$_ = Close (1)
? $y ?

EndIf

get $_


_________________________
Give a man a fish and he will be back for more. Slap him with a fish and he will go away forever.