我在看一个批处理文件,它定义了以下变量:

set _SCRIPT_DRIVE=%~d0
set _SCRIPT_PATH=%~p0

%~d0或%~p0到底是什么意思? 是否有一组众所周知的值,如当前目录、驱动器、脚本参数? 还有其他类似的捷径可以用吗?


当前回答

另一个有很大帮助的技巧是,要将当前目录设置到不同的驱动器,必须先使用%~d0,然后使用cd %~dp0。这将把目录更改为批处理文件的驱动器,然后更改为其文件夹。

对于#oneLinerLovers, cd /d %~dp0将同时更改驱动器和目录:)

希望这能帮助到一些人。

其他回答

这段代码解释了~波浪号字符的使用,这是最让我困惑的事情。一旦我明白了这一点,事情就更容易理解了:

@ECHO off
SET "PATH=%~dp0;%PATH%"
ECHO %PATH%
ECHO.
CALL :testargs "these are days" "when the brave endure"
GOTO :pauseit
:testargs
SET ARGS=%~1;%~2;%1;%2
ECHO %ARGS%
ECHO.
exit /B 0
:pauseit
pause

一些需要注意的陷阱:

如果双击批处理文件,%0将被引号包围。例如,如果您将此文件保存为c:\test.bat:

@echo %0
@pause

双击它将打开一个新的命令提示符,输出如下:

"C:\test.bat"

但是,如果您首先打开一个命令提示符并直接从该命令提示符调用它,%0将引用您键入的任何内容。如果你输入test。batEnter, %0的输出将没有引号,因为您没有输入引号:

c:\>test.bat
test.bat

如果你输入testEnter, %0的输出也没有扩展名,因为你没有输入扩展名:

c:\>test
test

tEsTEnter也一样:

c:\>tEsT
tEsT

如果你输入"test"Enter, %0的输出将有引号(因为你输入了它们),但没有扩展名:

c:\>"test"
"test"

最后,如果你输入“C:\test.bat”,输出将完全像你双击它:

c:\>"C:\test.bat"
"C:\test.bat"

请注意,这些不是%0可能的所有值,因为您可以从其他文件夹调用脚本:

c:\some_folder>/../teST.bAt
/../teST.bAt

上面显示的所有示例也将影响%~0,因为%~0的输出只是%0的输出减去引号(如果有的话)。

是的,你还可以使用下面给出的其他快捷方式。 在您的命令中,~d0表示第0个参数的驱动器号。

~ expands the given variable
d gets the drive letter only
0 is the argument you are referencing

由于第0个参数是脚本路径,它为您获取路径的驱动器号。你也可以使用下面的快捷方式。

%~1         - expands %1 removing any surrounding quotes (")
%~f1        - expands %1 to a fully qualified path name
%~d1        - expands %1 to a drive letter only
%~p1        - expands %1 to a path only
%~n1        - expands %1 to a file name only
%~x1        - expands %1 to a file extension only
%~s1        - expanded path contains short names only
%~a1        - expands %1 to file attributes
%~t1        - expands %1 to date/time of file
%~z1        - expands %1 to size of file
%~$PATH:1   - searches the directories listed in the PATH
               environment variable and expands %1 to the fully
               qualified name of the first one found.  If the
               environment variable name is not defined or the
               file is not found by the search, then this
               modifier expands to the empty string    

%~dp1       - expands %1 to a drive letter and path only
%~nx1       - expands %1 to a file name and extension only
%~dp$PATH:1 - searches the directories listed in the PATH
               environment variable for %1 and expands to the
               drive letter and path of the first one found.
%~ftza1     - expands %1 to a DIR like output line

这也可以直接在命令提示符中找到,当你运行CALL /?或FOR /?

神奇的变量%n包含用于调用文件的参数:%0是bat文件本身的路径,%1是其后的第一个参数,%2是第二个参数,以此类推。

因为参数通常是文件路径,所以有一些额外的语法来提取路径的部分。~d是驱动器,~p是路径(没有驱动器),~n是文件名。它们可以组合,所以~dp是驱动器+路径。

%~dp0因此在bat中非常有用:它是正在执行的bat文件所在的文件夹。

您还可以获得关于文件的其他类型的元信息:~t是时间戳,~z是大小。

请在这里查找所有命令行命令的参考。波浪魔术代码在for下面描述。

另一个有很大帮助的技巧是,要将当前目录设置到不同的驱动器,必须先使用%~d0,然后使用cd %~dp0。这将把目录更改为批处理文件的驱动器,然后更改为其文件夹。

对于#oneLinerLovers, cd /d %~dp0将同时更改驱动器和目录:)

希望这能帮助到一些人。