Is there a Windows command line command that I can use to get the full path to the current working directory?
Also, how can I store this path inside a variable used
This has always worked for me:
SET CurrentDir="%~dp0" ECHO The current file path this bat file is executing in is the following: ECHO %CurrentDir% Pause