Which method in the `Files` class copies a file and replaces the destination if it already exists?
-
A
Files.copy(src, dst, StandardCopyOption.REPLACE_EXISTING)
-
B
Files.copy(src, dst, StandardCopyOption.ATOMIC_MOVE)
-
C
Files.move(src, dst, StandardCopyOption.REPLACE_EXISTING)
-
D
Files.transfer(src, dst)