@Echo Off
Set WD=%~1
If Exist BIN\Iconv.exe (Set BIN=BIN) Else Set BIN=%WD%\BIN
If Not Exist %BIN%\Iconv.exe (
  Echo  㦥 䠩  %~1!
  Echo.
  Echo 믮 ࢠ
pause
GoTo :EOF
)

::     Log-
If Exist Temp\Log\Before (Set Before=Temp\Log\Before) Else Set Before=Z-Del_Files\Before
If %Before%==Temp\Log\Before If Exist Z-Del_Files\Before RD /S /Q Z-Del_Files
If Not Exist %Before% MD %Before%

::      Log-   Files_UTF  Files_ANSI
For /F "UseBackQ Delims=" %%I In (%~1\Files_UTF) Do Call :CopyFiles %%~I
For /F "UseBackQ Delims=" %%I In (%~1\Files_ANSI) Do Call :CopyFiles %%~I
GoTo :EOF

:CopyFiles
::  
Set I=%~1
If Not Exist %Before%\%I:~0,-1%? Copy /Y %I386%\%I:~0,-1%? %Before%\ >nul
Goto :EOF