method
chmod
chmod(mode)
public
Hide source
# 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