= private = protected
to_s()
Returns a String representation of the URI::FTP
# File lib/uri/ftp.rb, line 252 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