• Модуль: documentgenerator
  • Путь к файлу: ~/bitrix/modules/documentgenerator/lib/storage/file.php
  • Класс: BitrixDocumentGeneratorStorageFile
  • Вызов: File::getSize
public function getSize($path)
{
	$file = new IOFile($path);
	if($file->isExists() && $file->isReadable())
	{
		return $file->getSize();
	}

	return false;
}