集册 Java实例教程 移动文件和目录

移动文件和目录

欢马劈雪     最近更新时间:2020-01-02 10:19:05

407
移动文件和目录
/** from n o w j a v a . c o m - 时代Java**/

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);


  }

}