Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can anyone help me for a Java code which copy or move one folder as it is into another folder.

For example:
I have a folder named temp, inside temp I have a folder in-temp.

I want that my temp folder should be copied or moved into a new folder named new temp, but by using Java code.

I got an example code by searching on Google which copies the sub-directories and files of a folder into a new folder, but as I said I need to move a folder with it's sub-folder into a new folder.

Help me to resolve this.

Thank you.

share|improve this question
You might wish to start modifying the code you found via google, because the simple File.rename() mechanism may or may not move hierarchies between filesystems. – sarnold Mar 12 '11 at 11:30

1 Answer

up vote 7 down vote accepted

You can use apache-commons-io:

org.apache.commons.io.FileUtils.copyDirectory(File, File)
share|improve this answer
+1, no need to re-invent the wheel – a_horse_with_no_name Mar 12 '11 at 18:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.