集册 Java实例教程 将文件从一个目录移动到另一个目录

将文件从一个目录移动到另一个目录

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

448
将文件从一个目录移动到另一个目录

import java.io.File;

import java.io.IOException;
//来自 n  o  w  j  a  v  a . c o m

public class Main {

  public static void main(String[] arg) throws IOException {


    File f = new File("logs\\myfile.txt");

    if (f.renameTo(new File("savedlogs\\myfile.txt")))

          System.out.println("File moved.");

    else

          System.out.println("File not moved.");



  }

}