What Does %~Dp0 Mean, and How Does It Work?
I Find %~Dp0 Very Useful, and I Use It a Lot to Make My Batch Files More Portable. but the Label Itself Seems Very Cryptic to Me. .. What Is the ~ Doing? Does...
I find %~dp0 very useful, and I use it a lot to make my batch files more portable.
But the label itself seems very cryptic to me... What is the ~ doing? Does dp mean drive and path? Does the 0 refer to %0, the path to the batch file that includes the file name?
Or it is just a weird label?
I'd also like to know if it is a documented feature, or something prone to be deprecated.
7 Answers
Calling
for /?
in the command-line gives help about this syntax (which can be used outside FOR, too, this is just the place where help can be found).
In addition, substitution of FOR variable references has been enhanced. You can now use the following optional syntax:
%~I - expands %I removing any surrounding quotes (") %~fI - expands %I to a fully qualified path name %~dI - expands %I to a drive letter only %~pI - expands %I to a path only %~nI - expands %I to a file name only %~xI - expands %I to a file extension only %~sI - expanded path contains short names only %~aI - expands %I to file attributes of file %~tI - expands %I to date/time of file %~zI - expands %I to size of file %~$PATH:I - searches the directories listed in the PATH environment variable and expands %I 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 stringThe modifiers can be combined to get compound results:
%~dpI - expands %I to a drive letter and path only %~nxI - expands %I to a file name and extension only %~fsI - expands %I to a full path name with short names only %~dp$PATH:I - searches the directories listed in the PATH environment variable for %I and expands to the drive letter and path of the first one found. %~ftzaI - expands %I to a DIR like output lineIn the above examples %I and PATH can be replaced by other valid values. The %~ syntax is terminated by a valid FOR variable name. Picking upper case variable names like %I makes it more readable and avoids confusion with the modifiers, which are not case sensitive.
There are different letters you can use like f for "full path name", d for drive letter, p for path, and they can be combined. %~ is the beginning for each of those sequences and a number I denotes it works on the parameter %I (where %0 is the complete name of the batch file, just like you assumed).
(First, I'd like to recommend this useful reference site for batch: )
Then just another useful explanation:
The %~dp0 Variable
The
%~dp0(that’s a zero) variable when referenced within a Windows batch file will expand to the drive letter and path of that batch file.The variables
%0-%9refer to the command line parameters of the batch file.%1-%9refer to command line arguments after the batch file name.%0refers to the batch file itself.If you follow the percent character (
%) with a tilde character (~), you can insert a modifier(s) before the parameter number to alter the way the variable is expanded. Thedmodifier expands to the drive letter and thepmodifier expands to the path of the parameter.Example: Let’s say you have a directory on
C:calledbat_files, and in that directory is a file calledexample.bat. In this case,%~dp0(combining thedandpmodifiers) will expand toC:\bat_files\.Check out this Microsoft article for a full explanation.
Also, check out this forum thread.
And a more clear reference from here:
%CmdCmdLine%will return the entire command line as passed to CMD.EXE%*will return the remainder of the command line starting at the first command line argument (in Windows NT 4, %* also includes all leading spaces)%~dnwill return the drive letter of %n (n can range from 0 to 9) if %n is a valid path or file name (no UNC)%~pnwill return the directory of %n if %n is a valid path or file name (no UNC)%~nnwill return the file name only of %n if %n is a valid file name%~xnwill return the file extension only of %n if %n is a valid file name%~fnwill return the fully qualified path of %n if %n is a valid file name or directory
Must Read
ADD 1
Just found some good reference for the mysterious ~ tilde operator.
The %~ string is called percent tilde operator. You can find it in situations like: %~0.
The :~ string is called colon tilde operator. You can find it like %SOME_VAR:~0,-1%.