fileRename操作示例

import java.io.File;

/**
* @auto dh
* @create 2020-04-06-23:06
*/
public class File003 {
public static void main(String[] args) {
File file1 = new File("hello.txt");
File file2 = new File("D:" + File.separator + "lx.txt");
// renameTo方法使用规范:
// 1、file1必须存在
// 2、file2不存在
System.out.println(file1.renameTo(file2));
}
}
上一篇:codeblocks 主函数调用其他文件的函数时报错:"error:undefined reference to xxx"


下一篇:26. Bash Shell - 文本处理:cut、paste、join