# File lib/fakefs/file.rb, line 274
    def self.executable?(filename)
      file = FileSystem.find(filename)
      return false unless file
      (file.mode - 0100000) & 0100 != 0
    end