# File lib/vendor/fssm/fssm/pathname.rb, line 194
    def unlink
      Dir.unlink(self)
      true
    rescue Errno::ENOTDIR
      File.unlink(self)
      true
    end