import java.io.File;
public class TestDemo4
{
public static void main(String[] args)
{
File file=new File("F"+File.separator+"test"+File.separator+"demo.txt"); //实例化一个文件操作类对象,通过构造函数将抽象路径与对象相关联
if (file.exists()) //判断抽象路径的文件存在
{
File newFile = new File("D"+File.separator+"世界末日的demo.txt"); //实例化另一个文件操作类对象,与抽象路径相关联
file.renameTo(newFile);
}
}
}
为什么我的重命名不成功,无法给file重命名?(demo.txt和世界末日的demo.txt在硬盘上的路径位置也都是正确的。)
|