我对批处理脚本相当陌生,我需要编写一个非常简单的 .bat 文件,该文件将遍历一个目录。我知道如何使用 goto 命令很容易地做到这一点:
@echo off
:BEGIN
::set variable to data in first file
::do operations on file...
IF ::another file exists in the directory
::increment to next file
GOTO BEGIN
ELSE
GOTO END
:END
cls
问题是这是我能想到的唯一方法。我知道 goto 通常非常不喜欢使用,所以我想知道是否有人知道另一种方法来做到这一点?谢谢!