[feat] 新增QuietTime,免打扰。设置免打扰时间段,该时间段内不生成作业任务,例如09:00-12:00,13:00-18:00
智能大石头 authored at 2025-06-06 16:20:27
433.00 B
AntJob
@echo off

set name=StarWeb
set clover=..\..\Tools\clover.exe
if not exist "%clover%" (
    set clover=..\..\Doc\clover.exe
)

for %%f in (*.exe) do (
    rem 获取文件名(去掉扩展名)
    set "name=%%~nf"
    goto :found
)

:found
if defined name (
    del %name%.zip /f/q
    %clover% zip %name%.zip *.exe *.dll *.pdb appsettings.json *.runtimeconfig.json
) else (
    echo No exe file found in the current directory.
)