Recursive Directory Walker for really huge numbers of files
Dave Cragg
dcragg at lacscentre.co.uk
Thu May 9 02:02:01 EDT 2002
Hi
I'd look at changing the following section:
> repeat for each line x in temp
> put whatFolder & "/" & x into line (the number of lines of gHierList)+1
>of gHierList
> end repeat
Change to something like:
repeat for each line x in temp
put whatFolder & "/" & x & return after gHierList
end repeat
delete char -1 of gHierList ##last return
Cheers
Dave
More information about the use-livecode
mailing list