Inside a windows batch file I'd like to figgure out what the fully qualified path name of this batch file is.
I tried %0 but this does only give me the typed command (e.g. just the file name without path or extension).
|
1
|
|||||
|
|
|
works for me. |
||
|
|
|
|
"%~f0" "%~dpnx0" Either of the above gives the fully-qualified path. Enclose it in double quotes in case the path contains spaces. |
||
|
|
|
|
For your information, You will need to enable command extends, which is not exists before Win 2000 (I don't know NT4) SEE: cmd.exe /?
command extensions is enabled by default on windows. Another help I suggest to read is the FOR command. It contains complete meaning for those flag. SEE: for /?
|
||
|
|
|
|
is doing it (thanks to benlumley for the %~dp0) |
||||||
|
|
|
%CD% gives the current directory. %~dp0 will give you the directory the script is in. IE: script in c:\folder, i call it from c:\otherfolder %CD% = C:\otherfolder %~dp0 = c:\folder (I'm 99% sure I've got those the right way round, but not got windows to check on atm). edit: and from there, using the one you've already got, you should be able to get the batch file name |
||
|
|