Initial commit - eDNC Special Character Fix

Real-time file watcher to strip invalid characters (0xFF, etc.)
from DNC program files for CNC machine compatibility.

Features:
- Monitors folder for .pun files (configurable)
- Automatically cleans files on create/modify
- Configurable character removal
- Retry logic for locked files
- Session statistics

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
cproudlock
2025-12-12 08:30:37 -05:00
commit dc80aceafb
3 changed files with 332 additions and 0 deletions

14
Run-eDNCFix.bat Normal file
View File

@@ -0,0 +1,14 @@
@echo off
:: eDNC Special Character Fix Launcher
:: Runs the PowerShell script with appropriate execution policy
title eDNC Special Character Fix
echo.
echo Starting eDNC Special Character Fix...
echo.
powershell.exe -NoProfile -ExecutionPolicy Bypass -File "%~dp0eDNC-SpecialCharFix.ps1" %*
echo.
pause