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