• Модуль: documentgenerator
  • Путь к файлу: ~/bitrix/modules/documentgenerator/lib/model/file.php
  • Класс: BitrixDocumentGeneratorModelFileTable
  • Вызов: FileTable::download
static function download($fileId, $fileName = '')
{
	$data = static::getById($fileId)->fetch();
	if($data)
	{
		/** @var Storage $storage */
		$storage = new $data['STORAGE_TYPE'];
		return $storage->download($data['STORAGE_WHERE'], $fileName);
	}

	return false;
}