Files
CreatGame/Protobuf/gen_client.bat
2025-07-15 15:33:35 +08:00

28 lines
709 B
Batchfile

@echo off
setlocal enabledelayedexpansion
:: 输入目标文件夹路径
set "baseDir=Protobuf"
set "path=ProtobufCompiler/bin"
:: 转换为绝对路径并确保以反斜杠结尾
for %%I in ("%baseDir%") do set "baseDirAbs=%%~fI\"
:: 递归遍历所有文件并输出包含父目录名的相对路径
for /r "%baseDirAbs%" %%F in (*) do (
set "absPath=%%F"
set "relPath=!absPath:%baseDirAbs%=!"
echo %baseDir%\!relPath!
call protoc.exe --csharp_out=generated %baseDir%\!relPath!
)
endlocal
:: 设置源目录和目标目录
set "source_dir=generated"
set "target_dir=..\UnityGame\Assets\Script\Export\protobuf"
:: 拷贝所有文件
xcopy "%source_dir%\*" "%target_dir%" /E /C /H /Y
pause