• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/controller/file.php
  • Класс: BitrixDiskControllerFile
  • Вызов: File::downloadAction
public function downloadAction(DiskFile $file)
{
	$response = ResponseBFile::createByFileId($file->getFileId(), $file->getName());
	$response->setCacheTime(DiskConfiguration::DEFAULT_CACHE_TIME);

	return $response;
}