Scott, this function may be helpful. I've not tried it on a remote server...

function getDWShell pFolder
  if the platform is "Win32" then
     set the hideconsolewindows to true
  replace "/" with "\" in pFolder
  put shell("dir /s/b/a:-d-h" && q(pFolder)) into tFiles
  replace "\" with "/" in tFiles
  return tFiles
  else
   put shell("find " & q(pFolder) & " -type f") into fileList
   if the platform is "MacOS" then
      filter fileList without "*/.*"
   end if
   filter fileList without empty
   put unidecode(uniencode(fileList, "UTF8")) into fileList
   sort lines of fileList
   return fileList
  end if
end getDWShell

function q pStr
  return quote & pStr & quote
end q

Best,

Mark

On 21 Feb 2008, at 01:49, Scott Rossi wrote:

Hello List:

Has anyone created a routine to conduct a recursive directory listing of a remote server? I don't believe the old directoryWalk script in the archives
can be used as it relies on setting the directory property.

Thanks & Regards,

Scott Rossi
Creative Director
Tactile Media, Multimedia & Design


_______________________________________________
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