gpt4 book ai didi

loops - 通过父 bat 文件运行文件夹中的 bat 文件

转载 作者:行者123 更新时间:2023-12-02 05:26:25 26 4
gpt4 key购买 nike

我想知道如何创建一个 bat 文件来执行在特定目录中找到的所有其他 bat 文件?

最佳答案

单向

for %%f in (c:\xxx\*.bat) do (
call %%f
)

(要从同一文件夹运行它,您需要排除执行文件)

if %%f neq %0.bat (
call %%f
)

关于loops - 通过父 bat 文件运行文件夹中的 bat 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13010152/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com