// コピー元 Path from = Paths.get("C:\\work\\test.txt"); // コピー先 Path to = Paths.get("C:\\work\\test2.txt"); // コピー Files.copy(from, to);