method
to_s

to_s()
public
Hide source
# File lib/uri/ftp.rb, line 194 def to_s save_path = nil if @typecode save_path = @path @path = @path + TYPECODE_PREFIX + @typecode end str = super if @typecode @path = save_path end return str end