/**
  * @param string $path_
  *
  * @return \Components\Io_Archive
  */
 public static function archiveCreate($path_)
 {
     return Io_Archive::createZip($path_);
 }
 /**
  * @see \Components\Io_File::delete() \Components\Io_File::delete()
  *
  * @return \Components\Io_Archive_Zip
  */
 public function delete()
 {
     parent::delete();
     return $this;
 }