• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/rest/service/baseobject.php
  • Класс: BitrixDiskRestServiceBaseObject
  • Вызов: BaseObject::getFileById
protected function getFileById($id)
{
	$folder = DiskFile::getById($id, array('STORAGE'));
	if(!$folder)
	{
		throw new RestException("Could not find entity with id '{$id}'.", RestException::ERROR_NOT_FOUND);
	}

	return $folder;
}