HI everyone,
Let's say when i connect to a ftp do i have to worry about something called type.
I mean for example let say when connect to an ftp as such
URL url = new URL("ftp://user:pass@ftp.fileplanet.com/polo.zip");
Do i have to worry about something called type as such
URL url = new URL("ftp://user:pass@ftp.fileplanet.com/polo.zip;type=i");
Does the first way i list above work or do i have to use the second way i listed with the type for the connection to be successful.
Which of the above two ways you have used and which do you find more effective or are both the same.
If i do not specify the type by using the first way is there a default?
If i have to use the one with the type what the different kinds of types are there?
Currently i only know two which are i = image and a = ascii
Any help is greatly appreciated
Thank You
Yours Sincerely
Richard West