• Модуль: main
  • Путь к файлу: ~/bitrix/modules/main/lib/io/file.php
  • Класс: BitrixMainIOFile
  • Вызов: File::getLastAccessTime
public function getLastAccessTime()
{
	if (!$this->isExists())
		throw new FileNotFoundException($this->originalPath);

	return fileatime($this->getPhysicalPath());
}