namejm (闭关中)当前离线
批处理代码写手
荣誉版主
E:\>dir/s/b File Not Found E:\>md test E:\>echo test>test\x.txt E:\>for /r %f in (x.txt) do @echo %f E:\x.txt E:\test\x.txt E:\>for /r %f in (x.txt*) do @echo %f E:\test\x.txt
FOR /D %variable IN (set) DO command [command-parameters] 如果集中包含通配符,则指定与目录名匹配,而不与文件 名匹配。 FOR /R [[drive:]path] %variable IN (set) DO command [command-parameters] 检查以 [drive:]path 为根的目录树,指向每个目录中的 FOR 语句。如果在 /R 后没有指定目录,则使用当前 目录。如果集仅为一个单点(.)字符,则枚举该目录树。
doupip 当前离线
二级士官
TOP