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.
Is there any nice common OO library for handling files and directories, like recursive
Share
There are a whole bunch of classes in SPL:
DirectoryIteratorRecursiveDirectoryIteratorSPLFileObjectSPLFileInfo…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.