• Модуль: rest
  • Путь к файлу: ~/bitrix/modules/rest/classes/general/restentity.php
  • Класс: CBitrixRestEntity
  • Вызов: CBitrixRestEntity::getFile
static function getFile($fileId)
{
	$arFile = CFile::GetFileArray($fileId);
	if(is_array($arFile))
	{
		return CHTTP::URN2URI($arFile['SRC']);
	}
	else
	{
		return '';
	}
}