一些很好的OO库来处理PHP中的目录[关闭]

Is there any nice "common" OO library for handling files and directories, like recursive copy, delete, read and such? Native php functions sucks and their like OO approuch. Any tips on this would be helpfull I dont want re-invent the wheel.

There are a whole bunch of classes in SPL:

DirectoryIterator
RecursiveDirectoryIterator
SPLFileObject
SPLFileInfo

...to name the ones you are most likely to find useful.

There are no native recursive copy, delete etc classes but it would be easy to roll you own based on these SPL classes.

Directory class is supposed to be the "nice" "OO" way of handling directories. I think it succeeds in being nice and OO. Anything other than that is re-inventing the wheel ;).