method

chmod

chmod(mode)
public

No documentation available.

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