• Модуль: clouds
  • Путь к файлу: ~/bitrix/modules/clouds/classes/general/storage_bucket.php
  • Класс: CCloudStorageBucket
  • Вызов: CCloudStorageBucket::GetFileSize
function GetFileSize($filePath)
{
	$fileInfo = $this->GetFileInfo($filePath);
	if ($fileInfo)
	{
		return doubleval($fileInfo["size"]);
	}
	else
	{
		return 0.0;
	}
}