chmod(mode)
No documentation available.
# File lib/fileutils.rb, line 1239 def chmod(mode) if symlink? File.lchmod mode, path() if have_lchmod? else File.chmod mode, path() end end