Example #1
0
 /**
  * Delete chunks dir
  */
 public function deleteChunks()
 {
     $totalChunks = $this->request->getTotalChunks();
     for ($i = 1; $i <= $totalChunks; $i++) {
         $path = $this->getChunkPath($i);
         if (file_exists($path)) {
             unlink($path);
         }
     }
 }