Skip to content

copy

SimpleBackup copy(List<String> paths)
SimpleBackup copy(String... paths)
Add files or directories to copy.

Parameters:

paths - A list of files or directories to copy.

Returns:

this object (allows for method chaining).

Examples

backup = new SimpleBackup(this).copy("mySketch.pde", "data", "dir/to/file.ttf");
List<String> paths = List.of("mySketch.pde", "data", "dir/to/file.ttf");

backup = new SimpleBackup(this).copy(paths);

For more information, see the reference documentation folder in the SimpleBackup repository.