• Модуль: scale
  • Путь к файлу: ~/bitrix/modules/scale/lib/helper.php
  • Класс: BitrixScaleHelper
  • Вызов: Helper::getTmpDir
static function getTmpDir()
{
	$path = '/home/bitrix/.webdir';
	$permissionsForOwnerOnly = 0700;
	$res = true;

	if(!file_exists($path))
		$res = mkdir($path, $permissionsForOwnerOnly, true);

	return $res ? $path : '';
}