If you want to know the current location, in which folder or directory you are while using Windows CMD (Command Line Interface), you can make use of cd command,
Command: cd - This command can be used to displays the name of or to change the current directory.
Example:
D:\Games>cd
D:\Games
D:\Games>
If you want to print the current location in a Shell Script you can wrap the cd with percentage sign example %cd%,
Example:
D:\Games>echo "Current Location is %cd%"
"Current Location is D:\Games"
@echo off
set location=%cd%
echo Your current dir is %location%
pause
Output:
C:\Users\C2c\Desktop>sample.bat
Your current dir is C:\Users\C2c\Desktop
Press any key to continue . . .
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!