Re: [fw-general] Operating with file system: OO approach

2007-04-02 Thread Justin Hendrickson
I believe PEAR::VFS would work well for you, based on your description. http://pear.php.net/package/VFS On 3/31/07, Ivan Ruiz Gallego <[EMAIL PROTECTED]> wrote: Hello, I am looking for a class or a set of classes that allow an object-oriented operation with the file system. I am working now w

Re: [fw-general] Operating with file system: OO approach

2007-03-31 Thread Kevin McArthur
1:25 PM Subject: Re: [fw-general] Operating with file system: OO approach Have you looked into the SPL? http://www.php.net/~helly/php/ext/spl/ Specifically: DirectoryIterator, SPLFileInfo, SplFileObject You might find some useful information and File/Directory patterns in there. -ralph Ivan

Re: [fw-general] Operating with file system: OO approach

2007-03-31 Thread Ralph Schindler
Have you looked into the SPL? http://www.php.net/~helly/php/ext/spl/ Specifically: DirectoryIterator, SPLFileInfo, SplFileObject You might find some useful information and File/Directory patterns in there. -ralph Ivan Ruiz Gallego wrote: Hello Matt, Well. In first instance I am thinking abo

Re: [fw-general] Operating with file system: OO approach

2007-03-31 Thread Ivan Ruiz Gallego
Hello Matt, Well. In first instance I am thinking about the basic file system related operations like: create, remove, rename, move, copy or find directories and files. Basically, what we can already do, but in an object-oriented manner. In addition to this, I have been also thinking about a

Re: [fw-general] Operating with file system: OO approach

2007-03-31 Thread Matthew Ratzloff
There has been some light discussion in this area. Do you have any suggestions for what a component like this should be capable of doing? -Matt On Sat, March 31, 2007 9:31 am, Ivan Ruiz Gallego wrote: > Hello, > > I am looking for a class or a set of classes that allow an > object-oriented opera

[fw-general] Operating with file system: OO approach

2007-03-31 Thread Ivan Ruiz Gallego
Hello, I am looking for a class or a set of classes that allow an object-oriented operation with the file system. I am working now with SPL and I have also taken a look to PEAR, but I haven't so far found a comprehensive solution. As far as I know is such a library not included in Zend Framew