please give me code to do that.thanks in advance
code to copy and paste a folder from cd to a specified destination folder
Collapse
X
-
Tags: None
-
Use FileUtils().cop yDirectoryToDir ectory() from Jakarta Commons.
Don't use a shell command for doing the copy as suggested above. XCOPY only works for MS-DOS (windows), but not for apple, unix, mobile phones etc.
A great effort was done to make Java operating-system -independent, so don't cripple it!Comment
Comment