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

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