Moving a directory - Java File Path IO

Java examples for File Path IO:Directory Move

Description

Moving 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");
    Path destinationFile = Paths.get("C:/home/music/docs");
    Files.move(sourceFile, destinationFile);
  }//from   w w w.  ja  v a 2  s .  c  om
}

Related Tutorials