# File lib/fakefs/file.rb, line 80
    def self.atime(path)
      if exists?(path)
        FileSystem.find(path).atime
      else
        fail Errno::ENOENT
      end
    end