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));
}
}
相关文章
- 03-19fileRename操作示例
- 03-19File文件的一些基本方法和操作
- 03-19File文件的一些基本方法和操作
- 03-19KeyBord事件分发和接收简要过程代码示例
- 03-19顺序链表简单操作
- 03-19线性表的基本操作
- 03-19Delphi 操作键盘按下和释放操作
- 03-19win8在安装office visio2003出现“请求的操作需要提升”,解决方法
- 03-19【重学计算机】操作系统D5章:文件系统
- 03-19XML转换为对象操作类详解