Moving File : File Operation « JDK 7 « Java
- Java
- JDK 7
- File Operation
Moving File
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
public class Test {
public static void main(String[] args) throws Exception{
Path sourceFile = Paths.get("C:/home/docs/users.txt");
Path destinationFile = Paths.get("C:/home/music/users.txt");
Files.move(sourceFile, destinationFile);
}
}
Related examples in the same category