Board logo

标题: [文件操作] 刚入手,求助批处理for循环为何多执行了一次? [打印本页]

作者: 小龙虾    时间: 2022-1-22 14:13     标题: 刚入手,求助批处理for循环为何多执行了一次?

问题:有一堆文件,想在每个标题前面加两个字,
比如有两个文件:
111.txt
222.txt

我在网上找了一些资料,代码如下:
  1. @echo off
  2. setlocal EnableDelayedExpansion
  3. for %%i in (*.txt) do (
  4. set name=%%i
  5. echo !name!
  6. set "prefix=hello"
  7. echo !prefix!
  8. ren "%%i" "!prefix! !name!"
  9. )
  10. pause
复制代码
但是打印结果却很奇怪,本来只有两个文件,但是for循环执行了三次,打印显示:
111.txt
hello
222.txt
hello
hello 111.txt
hello

想求助,为什么后面多了一次,是哪里写错了吗?
作者: idwma    时间: 2022-1-22 14:46

文件名变了被排到了后面
可以改用for /f "delims=" %%i in ('dir /b *.txt')
作者: Batcher    时间: 2022-1-22 20:25

回复 1# 小龙虾


参考for命令教程第8页:
http://bbs.bathome.net/thread-31727-1-1.html
作者: 小龙虾    时间: 2022-1-23 00:15

回复 2# idwma
真的工作了,太谢谢了。
作者: 小龙虾    时间: 2022-1-23 00:16

回复 3# Batcher
收到




欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2