Let's diagnose the root causes. There is rarely a single reason; instead, it's usually one of the following:
| Cause | Explanation |
|-------|-------------|
| Wrong Working Directory | The executable is looking for the dat folder in the wrong place. For example, if you have the game on D:\Games\PES6\ but the EXE expects C:\Program Files\KONAMI\Pro Evolution Soccer 6\dat. |
| Corrupted or Missing AFS Files | During patch installation, an antivirus or a bad download may have deleted or corrupted 0_text.afs or e_text.afs. |
| File Attribute Issues | The AFS files are marked as "Hidden" or "Read-Only." The game cannot access them. |
| Incompatible Patch | You installed a patch designed for a different region or version (e.g., a Spanish patch on an English game), and the executable calls for s_text.afs which doesn't exist. |
| Registry Errors | PES 6 relies on Windows registry keys to locate its installation path. If you moved or copied the game folder without updating the registry, the game looks in an old, non-existent path. |
| AFS Name Mismatch | Some modded EXEs are hardcoded to look for 0_text.afs but the file in your folder is named 0_text.afs.new or 0_text_original.afs. |
The most common scenario for this error is when players attempt to install community patches (like SmokePatch, PESEdit, or standalone Option Files).
In modern PES modding, a tool called Kitserver is used to inject new graphics into the game. Kitserver uses a folder named img inside dat to store new AFS files that override the original ones. afs file not found pes 6
If you are using Kitserver (which you likely are if you have mods):
If files are truly missing or corrupt:
We provide a small batch script that:
Download: PES6_AFS_Fixer.bat
@echo off
echo PES 6 - AFS File Not Found Fixer
cd /d "%ProgramFiles%\KONAMI\Pro Evolution Soccer 6\dat"
if exist "0_text.afs" (
echo Found 0_text.afs
if not exist "all.afs" mklink "all.afs" "0_text.afs"
)
echo Done. Try launching the game.
pause
An ounce of prevention is worth a pound of cure. Follow these best practices:
✔ Keep a backup of your pristine 0_text.afs and e_text.afs on an external drive.
✔ Disable antivirus when installing any PES 6 patch (then re-enable and add the game folder as an exception).
✔ Never install multiple patches over each other – this corrupts AFS structures.
✔ Store PES 6 in a simple path – avoid C:\Program Files because Windows protects it. Use C:\Games\PES6 or D:\PES6.
✔ Use the "Repair" option in patch installers if available. Let's diagnose the root causes
Right‑click the patching tool → Run as administrator
This gives access to protected folders.
If you’re seeing “AFS file not found” while trying to run Pro Evolution Soccer 6 (PES 6), it means the game can’t locate one or more AFS archive files it expects. AFS files store textures, models, stadiums, or other game assets — when they’re missing or misnamed, PES 6 can’t load parts of the game and will show that error. Here’s a bright, practical guide to get you back on the pitch.