public static void main(String[] args) throws Exception {
String oldPath = "/Users/admin/test/jmeter/123.log";
String newPath = "/Users/admin/test/jmeter/123/qweqweqweq.log";
//创建指定的路径
File directory = new File(newPath);
//获取文件夹 路径
String courseFile = directory.getParent();
File file = new File(courseFile );//
if(!file.exists()){//如果文件夹不存在
file.mkdir();//创建文件夹
}
File oldFile = new File(oldPath );
File newFile = new File(newPath );
//重命名
System.out.println(oldFile.renameTo(newFile));
}
本文由 小马哥 创作,采用 知识共享署名4.0 国际许可协议进行许可
本站文章除注明转载/出处外,均为本站原创或翻译,转载前请务必署名
最后编辑时间为:
2020/07/07 23:00