Uses of Record Class
cloud.opencode.base.io.batch.BatchResult
Packages that use BatchResult
-
Uses of BatchResult in cloud.opencode.base.io.batch
Methods in cloud.opencode.base.io.batch that return BatchResultModifier and TypeMethodDescriptionBatchResult.Builder.build()Build the result 构建结果static BatchResultOpenBatch.copyAll(Collection<Path> sources, Path targetDir, CopyOption... options) Copy all files to target directory 复制所有文件到目标目录static BatchResultOpenBatch.copyAll(Collection<Path> sources, Path targetDir, Predicate<Path> filter, CopyOption... options) Copy files matching filter to target directory 复制匹配过滤器的文件到目标目录OpenBatch.ParallelBuilder.copyAll(Collection<Path> sources, Path targetDir, CopyOption... options) Copy all files in parallel 并行复制所有文件static BatchResultOpenBatch.copyGlob(Path sourceDir, String pattern, Path targetDir, CopyOption... options) Copy files matching glob pattern 复制匹配 glob 模式的文件static BatchResultOpenBatch.deleteAll(Collection<Path> paths) Delete all files 删除所有文件static BatchResultOpenBatch.deleteAll(Collection<Path> paths, Predicate<Path> filter) Delete files matching filter 删除匹配过滤器的文件OpenBatch.ParallelBuilder.deleteAll(Collection<Path> paths) Delete all files in parallel 并行删除所有文件static BatchResultOpenBatch.deleteGlob(Path dir, String pattern) Delete files matching glob pattern 删除匹配 glob 模式的文件OpenBatch.ParallelBuilder.execute(String operation, Collection<Path> paths, OpenBatch.PathAction action) Execute custom operation in parallel 并行执行自定义操作static BatchResultOpenBatch.moveAll(Collection<Path> sources, Path targetDir, CopyOption... options) Move all files to target directory 移动所有文件到目标目录static BatchResultOpenBatch.moveAll(Collection<Path> sources, Path targetDir, Predicate<Path> filter, CopyOption... options) Move files matching filter to target directory 移动匹配过滤器的文件到目标目录OpenBatch.ParallelBuilder.moveAll(Collection<Path> sources, Path targetDir, CopyOption... options) Move all files in parallel 并行移动所有文件static BatchResultOpenBatch.moveGlob(Path sourceDir, String pattern, Path targetDir, CopyOption... options) Move files matching glob pattern 移动匹配 glob 模式的文件