gpt4 book ai didi

windows - .bat 文件有问题

转载 作者:可可西里 更新时间:2023-11-01 10:01:04 33 4
gpt4 key购买 nike

我有迷你递归函数,可以查找并隐藏所有 .mta 文件。看起来是这样的

For /r %1 in (*.mta) do attrib +h "%1"

当我尝试从命令提示符手动执行它时,它工作正常

enter image description here

我已经创建了 .bat 文件。代码看起来像这样

D:
For /r %1 in (*.mta) do attrib +h "%1"
pause

试图执行这个文件。获取此屏幕

enter image description here

代码有什么问题?

最佳答案

尝试:

For /r %%i in (*.mta) do attrib +h "%%i"

(并将文件命名为 .cmd,它看起来更现代。)

不要使用 %1,它引用您脚本的参数,所以它 will not work .在命令行中使用 %,在批处理脚本中使用 %%

关于windows - .bat 文件有问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7957890/

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