Sunday, April 29, 2012

File Explorer Class

PHP Scripts - File Explorer Class - CodeCanyon

File Explorer Class his title this type of PHPScripts/Miscellaneous This time I will review,made by Sitebase, PHPScripts/Miscellaneous is sold at a price of $4 in CodeCanyon. File Explorer Class - CodeCanyon Item for Sale class // copy // delete // extension // files // listing // move // php // rename //
Created 5 February 10
Last Update 5 February 10
Compatible Browsers Firefox, IE6, IE7, IE8, Opera, Safari
Software Version PHP 5.x, jQuery
Software Framework N/A
Files Included PHP

A. Description

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.

B. Features

  • Copy files and folders
  • Move files and folders
  • Rename files and folders
  • Delete files and folders
  • Create files and folders
  • Read and write a file
  • Listing the content of a directory
  • Get file extension

Easy to use

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'); 

Related produck This user:Sitebase

Google Maps for Mobile Site PRO - CodeCanyon Item for Sale Twitter Wall for Mobile Site PRO - CodeCanyon Item for Sale Mobile Site PRO - CodeCanyon Item for Sale News Widget for WordPress - CodeCanyon Item for Sale Testimonials for WordPress - CodeCanyon Item for Sale API Client - CodeCanyon Item for Sale Html Helper Class - CodeCanyon Item for Sale

More items by Sitebase

No comments:

Post a Comment