File根据重命名方法移动文件

File根据重命名方法复制文件

File.separator判断是windows还是unix
File file=new File("D:\\a.txt");

StringBuffer sb = new StringBuffer();
sb.append(File.separato).append("test");
sb.append(File.separator);

File newFile = new File("E:\\aa.txt");
file.renameTo(newFile);//重命名  括号里面File类型   这里其实是移动文件  跟据完全重名名方法 移动文件





你可能感兴趣的:(复制文件,移动文件)