Moving a file and a directory - Java File Path IO

Java examples for File Path IO:Directory Move

Description

Moving a file and a directory

Demo Code

import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;

public class Main {
  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);

  }//from  www.  j  a v  a 2s .  c  o m
}

Related Tutorials