// 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