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