import java.nio.file.*;var file = Paths.get("data_copy/file.txt");var exists = Files.exists(file);System.out.println("exists is " + exists);