“Holen Sie sich aktuelle Verzeichnisstapel” Code-Antworten

Fledermaus aktuelles Verzeichnis

From within your batch file:

%cd% refers to the current working directory (variable)
%~dp0 refers to the full path to the batch file's directory (static)
%~dpnx0 and %~f0 both refer to the full path to the batch directory and file name (static).
Bright Bug

Batch -Verzeichnis

echo [current working directory]     :     %%cd%%       :      %cd%     
echo [batch folder path]             :     %%~dp0      :      %~dp0     
echo [batch files fullpath]          :     %%~dpnx0    :      %~dpnx0
echo [batch files fullpath]          :     %%~f0       :      %~f0

REM # | OUTPUT EXAMPLE
REM # | [current working directory] : %cd%     :  G:\DynamicWorkingDirectory
REM # | [batch folder path]         : %~dp0    :  G:\Deletable\
REM # | [batch files fullpath]      : %~dpnx0  :  G:\Deletable\01_Basic.bat
REM # | [batch files fullpath]      : %~f0     :  G:\Deletable\01_Basic.bat
Jacques_Kirstein

Aktuelles Verzeichnis in der Batch -Datei

Use this
%cd% ---> shows current working directory of the command window.
Outstanding Lioncatcher

Holen Sie sich aktuelle Verzeichnisstapel

%cd% refers to the current working directory (variable)
%~dp0 refers to the full path to the batch file's directory (static)
%~dpnx0 and %~f0 both refer to the full path to the batch directory and file name (static).
Muddy Moose

Ähnliche Antworten wie “Holen Sie sich aktuelle Verzeichnisstapel”

Fragen ähnlich wie “Holen Sie sich aktuelle Verzeichnisstapel”

Weitere verwandte Antworten zu “Holen Sie sich aktuelle Verzeichnisstapel” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen