Hi ,
I wanted know
How to rename a file in ftp server using java.
I am using java.net.URL
to connect to the server
Thanks
Hi ,
I wanted know
How to rename a file in ftp server using java.
I am using java.net.URL
to connect to the server
Thanks
In the name of all that's holy, don't try and write your own FTP client.
Use Apache Commons Net, it comes with an FTP client class for you to use.
Use Apaches FTPClient. Its much easier
http://commons.apache.org/net/
FTPClient.rename(String from, String to);