1

如何在 Windows 批处理脚本的 for 循环中遍历令牌?

我正在编写一个脚本,允许用户搜索文件并打印出该文件的父目录。到目前为止,我可以从文件名中获取完整路径,但我只需要父目录。工作正常,但想要一种更有效的方式来遍历令牌。

这是我所拥有的一个片段。file 变量是要搜索的文件,Path 变量是文件的完整路径。

fOR /F "tokens=1-25 delims=\" %%i IN ("!thePath!") DO (

    if %%j equ %file% set theParent= %%i
    if %%k equ %file% set theParent= %%j
    if %%l equ %file% set theParent= %%k
    if %%m equ %file% set theParent= %%l
    if %%n equ %file% set theParent= %%m
    if %%o equ %file% set theParent= %%n
    if %%p equ %file% set theParent= %%o
    if %%q equ %file% set theParent= %%p
    if %%r equ %file% set theParent= %%q
    if %%s equ %file% set theParent= %%r
    if %%t equ %file% set theParent= %%s
    if %%u equ %file% set theParent= %%t
    if %%v equ %file% set theParent= %%u
    if %%w equ %file% set theParent= %%v
    if %%x equ %file% set theParent= %%w
    if %%y equ %file% set theParent= %%x
    if %%z equ %file% set theParent= %%y


)
echo The parent directory is: %theParent%
4

1 回答 1

4

您的方法不能可靠地工作,因为文件可能与其父文件夹之一共享相同的名称。

无需迭代 FOR /F 令牌。您可以使用简单的 FOR 直接获取父文件夹 :-)

for %%F in ("!thePath!\..") do set "theParent=%%~nxF"
echo The parent directory is: !theParent!

注意 -theParent如果文件位于根目录中,则为未定义(空)。

于 2013-01-24T17:41:12.063 回答