Could anyone pls tell me which command I can use to move one folder to another location.
Thanks.
Command? If you mean how to do it in Java, you can try the platform dependant File.renameTo method. It's probably best to just write a copyFile method, use that and delete the source file after that.
Comment