copy_to_csvdata.bat 212 B

123456
  1. @echo off
  2. set destPath=..\..\GameEditors\UIEdit\res\ui_edit\config\
  3. rd /q /s %destPath%
  4. xcopy /S /E /Y .\client_csv_config %destPath%
  5. echo "Clinet csv config files have already copied into %destPath%"
  6. pause