public class FileOperations
extends java.lang.Object
| Modifier and Type | Method and Description |
|---|---|
static void |
copy(com.google.common.collect.ImmutableList<java.nio.file.Path> sourceFiles,
java.nio.file.Path destDir)
Copies
sourceFiles to the destDir directory. |
public static void copy(com.google.common.collect.ImmutableList<java.nio.file.Path> sourceFiles,
java.nio.file.Path destDir)
throws java.io.IOException
sourceFiles to the destDir directory.sourceFiles - the list of source files.destDir - the directory to copy the files to.java.io.IOException - if the copy fails.