// Create Folder Path newFolderPath = Paths.get("D:\\Desktop\\test"); if(Files.exists(newFolderPath) && Files.isDirectory(newFolderPath)){ System.out.println("폴더가 존재합니다."); }else{ Files.createDirectory(newFolderPath); System.out.println("폴더가 생성되었습니다."); } // Create File Path newPath = Paths.get("D:\\Desktop\\새 폴더 (6)\\isTest.txt"); if(Files.exists(newPath)){ System.out.println("파일이 존재합니다."); }el..