class File::Stat

Public Instance Methods

door?() click to toggle source
# File lib/solaris/file/stat.rb, line 5
def door?
  mode & 0xF000 == 0xd000
end
ftype() click to toggle source
# File lib/solaris/file/stat.rb, line 9
def ftype
  if mode & 0xF000 == 0xd000
    "door"
  else
    ftype_orig
  end
end
Also aliased as: ftype_orig
ftype_orig()
Alias for: ftype