No official tool from Konami lists .dp contents. The community, however, created CriPakTools or DP File Explorer (specific to PES). These tools read the CPK (CriPak) structure, which is what .dp files really are — just renamed .cpk archives.
In the world of PES 2016 modding, .dp files are like encrypted treasure chests. They contain everything from player faces and stadium models to kits, ball physics, and menu graphics. Konami used this format to bundle assets efficiently, but for modders, accessing the contents is the first step toward customization.
Our protagonist, Alex, wanted to generate a file list — a simple text inventory of what’s inside each .dp file — to keep mods organized and avoid conflicts. Here’s how Alex did it, step by step.
Search on:
Example filename: DP File List Generator 2016 by xxx.rar
Method A — Using DP File Explorer (GUI):
Method B — Using Command Line (CriPakTool): For batch processing, Alex opened a terminal and used:
CriPakTool.exe -l path\to\file.dp > filelist.txt
The -l flag lists contents; > redirects output to a text file. To scan all .dp files in a folder, a simple loop did the trick:
for %f in (*.dp) do CriPakTool.exe -l "%f" >> combined_list.txt
**1. The Header
Advanced users can run:
DPFileListGenerator.exe "C:\path\to\download" /generate /silent
This allows you to create a .bat file that auto-generates your DP list every time you launch PES 2016.