/**
  * remove the data under the given path
  *
  * @param   string  $path
  * @return  bool
  */
 public function unlink($path)
 {
     self::recordMethodCall('unlink', $path);
     return parent::unlink($path);
 }