RsD0p9BK
2/17/2017 - 9:40 AM

delete_files_from_dir.php

// Deleting all files from a folder using PHP

$dir = 'your/directory/';
foreach(glob($dir.'*.*') as $v){
  unlink($v);
}

// http://stackoverflow.com/questions/4594180/deleting-all-files-from-a-folder-using-php