• Модуль: fileman
  • Путь к файлу: ~/bitrix/modules/fileman/classes/general/fileman_utils.php
  • Класс: CFilemanUtils
  • Вызов: CFilemanUtils::GetModifyTime
static function GetModifyTime($path)
{
	$path = CBXVirtualIoFileSystem::ConvertCharset($path);

	if (file_exists($path))
	{
		$stat = stat($path);
		return $stat["mtime"];
	}

	return null;
}