- /*
- * 重命名功能
- *
- * public boolean renameTo(File dest)
- *
- * 相同目录:重命名文件;
- * 不同目录:剪切,并重命名;
- *
- */
- public class Demo {
- public static void main(String[] args) {
- File file = new File("C:\\test\\test.txt");
-
- // System.out.println("重命名文件:" + file.renameTo(new File("C:\\test\\myFile.txt")));
- System.out.println("重命名文件:" + file.renameTo(new File("myFile.txt")));
- }
- }
复制代码 |
|