PHP Classes

File: sample.php

Recommend this page to a friend!
  Classes of Johnson Omotosho   PHP Duplicate File Remover   sample.php   Download  
File: sample.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Duplicate File Remover
Remove files that exist more than once in a folder
Author: By
Last change:
Date: 2 years ago
Size: 201 bytes
 

Contents

Class file image Download
<?php

use Amantosh\DuplicateFileRemover as Remove;

require
"class.duplicateFileRemover.php";

$sample_path = "path/to/a/folder/";


$ins = new Remove($sample_path);

$ins->start_process();