Method: FileUtils#fu_have_symlink?

Defined in:
lib/fileutils.rb

#fu_have_symlink?Boolean

:nodoc:

Returns:

  • (Boolean)
[View source]

759
760
761
762
763
764
765
# File 'lib/fileutils.rb', line 759

def fu_have_symlink?   #:nodoc:
  File.symlink nil, nil
rescue NotImplementedError
  return false
rescue TypeError
  return true
end