mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-05-09 23:51:34 +08:00
修复PathUtil.moveContent当target不存在时会报错问题
This commit is contained in:
parent
03fde0c1d3
commit
0e0b0f7513
@ -162,6 +162,9 @@ public class PathMover {
|
|||||||
|
|
||||||
final CopyOption[] options = this.options;
|
final CopyOption[] options = this.options;
|
||||||
|
|
||||||
|
// 自动创建目标的父目录
|
||||||
|
PathUtil.mkParentDirs(target);
|
||||||
|
|
||||||
// 移动失败,可能是跨分区移动导致的,采用递归移动方式
|
// 移动失败,可能是跨分区移动导致的,采用递归移动方式
|
||||||
walkMove(src, target, options);
|
walkMove(src, target, options);
|
||||||
return target;
|
return target;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user