method

chmod

v1_9_1_378 - Show latest stable - Class: FileUtils::Entry_
chmod(mode)
public

No documentation available.

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