Method: FileUtils#fu_have_symlink?
- Defined in:
- lib/fileutils.rb
permalink #fu_have_symlink? ⇒ Boolean
:nodoc:
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 |