Hi
Is there a easy way, in Java, to copy a complete file directory structure??
/regards
/lars
Printable View
Hi
Is there a easy way, in Java, to copy a complete file directory structure??
/regards
/lars
Easy no. Fun, yes! Write a recursive function(s) that will traverse the directory structure and do a copy on each file to the target directory. Shouldn't be too hard . . .