How can I copy a folder and all its subfolders and files into another folder?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Apache Commons IO can do the trick for you. Have a look at FileUtils. |
|||||
|
|
|
Use recursion, you can find many examples, e.g: here:
|
||||
|
|
|
look at java.io.File for a bunch of functions. you will iterate through the existing structure and mkdir, save etc to achieve deep copy. |
|||
|
|