my question how to move a file from one location to another location. when i run my program any file created in that location it automatically move to the specified location and how to know which file is moved?.. in java
thanks in advance..
|
|
File#renameTo does that (it can not only rename, but also move between directories, at least on the same file system).
If you need a more comprehensive solution (such as wanting to move the file between disks), look at Apache Commons FileUtils#moveFile |
|||
|
To move a file you could also use Jakarta Commons IOs FileUtils.moveFile On error it throws an |
|||
|
|
|
|
|||
|
|
|
You could execute an external tool for that task (like
|
|||
|
|