[Zope] product to view all files in a folder?

Jerome Alet alet@librelogiciel.com
Fri, 28 Mar 2003 18:21:43 +0100


On Fri, Mar 28, 2003 at 11:54:04AM -0500, sameer chaudhry wrote:
> Is there a zope product to view all files in a folder outside of the zope root directory, but on the filesystem?

You could write one with a few lines in an External method.

Alternatively, you could install ZShell, available from
http://www.librelogiciel.com/software/ and run its exec
command like this :

        exec ls -al /home/your_directory/
        
The command's result is what you want.        

bye,

Jerome Alet