Windows shell command to get the full path to the current directory?

前端 未结 14 1740
一向
一向 2020-11-30 17:51

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

14条回答
  •  半阙折子戏
    2020-11-30 18:31

    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
    

提交回复
热议问题