How about this?

function listFiles pFolderPath
   set the defaultFolder to pFolderPath
   put the files into tFiles
   filter tFiles without ".*"
   put empty into tList
   repeat for each line tFile in tFiles
      put tFile &tab& (pFolderPath &"/"& tFile) &cr after tList
   end repeat
   return char 1 to -2 of tList
end listFiles

Terry...

On 9/02/10 4:05 PM, "Mark Swindell" <[email protected]> wrote:

> How do I return a list of the files in a given folder on disk along with their
> full path?
> 
> Thanks,
> Mark_______________________________________________
> use-revolution mailing list
> [email protected]
> Please visit this url to subscribe, unsubscribe and manage your subscription
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution

_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to