By : Sitebase Published On Friday, February 05, 2010, 22:09 In PHP Scripts
If you already worked with files and directories in PHP then you will know that the default copy, delete(unlink) functions are ok to use on files but when you want to delete or copy a directory with content in it, it’s an whole other story. This class gives you the ability to easily delete, create, move, copy files and directories with content.
To big advantage of this class is that is works recursive and that it works the same for directories and files.
If you for example want to delete a directory and all it’s content you can do it like this.
include("File.php");
$File = new Explorer();
$File->SetPath('c:/test/sitebase');
$File->Delete();
If you want to delete a file you can do this:
include("File.php");
$File = new Explorer();
$File->SetPath('c:/test/sitebase.txt');
$File->Delete();
To copy a directory and it’s content you do this:
include("File.php");
$File = new Explorer();
$File->SetPath('c:/test/sitebase');
$File->Copy('c:/test/sitebase_backup');