Skip to content
This repository has been archived by the owner on Oct 19, 2020. It is now read-only.

Commit

Permalink
Convert text encoding from ANSI to UTF-8
Browse files Browse the repository at this point in the history
  • Loading branch information
Android-KitKat committed Aug 18, 2017
1 parent bf84b16 commit 1a0680d
Showing 1 changed file with 19 additions and 17 deletions.
36 changes: 19 additions & 17 deletions TroveExtract.bat
Original file line number Diff line number Diff line change
@@ -1,34 +1,36 @@
@ECHO OFF
rem 启用延迟环境变量扩展
rem 设置字符编码为UTF-8。
chcp 65001
rem 启用延迟环境变量扩展
setlocal EnableDelayedExpansion
rem 提取Trove全部的资源文件。
rem 版本:v1.1.0
rem https://github.com/Android-KitKat/TroveExtract
rem 将此文件放入游戏目录,运行此文件。
rem 资源文件将被提取到游戏目录的extracted文件夹。
rem 提取Trove全部的资源文件。^
版本:v1.1.0^
https://github.com/Android-KitKat/TroveExtract^
将此文件放入游戏目录,运行此文件。^
资源文件将被提取到游戏目录的extracted文件夹。

rem 设置标题
title 提取资源文件
rem 判断是否存在Trove.exe
rem 设置标题
title 提取资源文件
rem 判断是否存在Trove.exe
if not exist Trove.exe (
echo Trove.exe不存在,请将此文件放入游戏目录。
echo Trove.exe不存在,请将此文件放入游戏目录。
goto end
)
rem 游戏目录
rem 游戏目录
set TROVEDIR=%~dp0
rem 遍历文件夹
rem 遍历文件夹
for /R /D %%i in (*) do (
rem 判断是否存在索引
rem 判断是否存在索引
if exist %%i\index.tfi (
rem 目标文件夹的相对路径
rem 目标文件夹的相对路径
set TARGETDIR=%%i
set TARGETDIR=!TARGETDIR:%TROVEDIR%=!
rem 提取资源文件
echo 开始提取!TARGETDIR!
rem 提取资源文件
echo 开始提取!TARGETDIR!
Trove.exe -tool extractarchive !TARGETDIR! extracted\!TARGETDIR!
)
)
echo 提取完成
echo 提取完成
:end
endlocal
pause

0 comments on commit 1a0680d

Please sign in to comment.