Skip to the content.

12. Application Data

Everything the application persists lives under the per-user AppData folder:

%LocalAppData%\BatchConvertToCHD\
├── logs\                          # Serilog rolling log files
│   └── BatchConvertToCHD-YYYYMMDD.log   (daily roll, 7 files retained)
└── screenshots\                   # F8 screenshots
    └── screenshot_yyyy-MM-dd_HH-mm-ss-fff.png

%LocalAppData% resolves to C:\Users\<user>\AppData\Local on a standard install.

12.1 Logs

12.2 Screenshots

12.3 Temporary Directories

Temp directories are not under AppData — they live on the drive with the most free space:

12.4 What Lives Next to the Executable

Item Purpose
BatchConvertToCHD.exe The application
chdman.exe / chdman_arm64.exe MAME CHD tool (must stay next to the exe)
7za.exe / 7za_arm64.exe 7-Zip fallback extractor
CHDSharp.dll, WPF-UI assemblies, etc. Managed dependencies (copy-local)
CCDSharp.dll, CSOSharp.dll, PBPSharp.dll In-house libraries

Legacy leftovers (logs, Resources, Screenshot folders; maxcso.exe, psxpackager.exe) are deleted automatically at startup by LegacyCleanupService (see Services Reference).

12.5 Network Endpoints

Endpoint Purpose
https://www.purelogiccode.com/bugreport/api/send-bug-report Bug reports (POST, X-API-KEY header)
https://www.purelogiccode.com/ApplicationStats/stats Anonymous usage stats (POST, Bearer token)
https://api.github.com/repos/drpetersonfernandes/BatchConvertToCHD/releases/latest Update checks (GET, User-Agent)

All HTTP traffic goes through the shared AppHttpClient singleton (TLS 1.2/1.3, see Services Reference).