MCPcopy Create free account
hub / github.com/SeanDragon/protools / copyDir

Method copyDir

common/src/main/java/pro/tools/file/ToolFile.java:370–372  ·  view source on GitHub ↗

复制目录 @param srcDirPath 源目录路径 @param destDirPath 目标目录路径 @return true: 复制成功 false: 复制失败

(String srcDirPath, String destDirPath)

Source from the content-addressed store, hash-verified

368 * @return {@code true}: 复制成功<br>{@code false}: 复制失败
369 */
370 public static boolean copyDir(String srcDirPath, String destDirPath) throws IOException {
371 return copyDir(getFileByPath(srcDirPath), getFileByPath(destDirPath));
372 }
373
374 /**
375 * 复制目录

Callers

nothing calls this directly

Calls 2

getFileByPathMethod · 0.95
copyOrMoveDirMethod · 0.95

Tested by

no test coverage detected