• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/rest/service/version.php
  • Класс: BitrixDiskRestServiceVersion
  • Вызов: Version::download
protected function download($id)
{
	$version = $this->get($id);

	$fileData = $version->getFile();
	if(!$fileData)
	{
		throw new RestException('Could not get content of version');
	}
	CFile::viewByUser($fileData, array('force_download' => true, 'cache_time' => 0, 'attachment_name' => $version->getName()));
}