You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
409 B

CHCP 65001
echo off
cd ./win7-x64/bin/
ExcelExport.exe MergeLanguageDesc
SET SourceFileTr=..\trace.log
if exist %SourceFileTr% (
::chcp 65001
type %SourceFileTr%
) else (
echo ********************** ok **********************
)
SET SourceFile=..\error.log
if exist %SourceFile% (
::chcp 65001
type %SourceFile%
) else (
echo ********************** ok **********************
)
pause