1. 程式人生 > >【語言-批處理】進入或跳轉到批處理檔案所在的目錄(當前檔案目錄)

【語言-批處理】進入或跳轉到批處理檔案所在的目錄(當前檔案目錄)

cd %~dp0

測試檔案路徑"E:\調研專案\批處理\Test.bat"。

命令

%0

批處理檔案自身

"E:\調研專案\批處理\Test.bat"

%~0

全路徑

E:\調研專案\批處理\Test.bat

%~f0

(file)全路徑

E:\調研專案\批處理\Test.bat

%~d0

(dir)碟符

E:

%~p0

(path)路徑-無碟符

\調研專案\批處理\

%~n0

(name)檔名稱

Test

%~x0

(exe)字尾名

.bat

%~s0

(Short)全路徑

E:\調研專案\批處理\Test.bat

%~a0

(attribute)檔案屬性

--a------

%~t0

(time)檔案修改日期

2016-06-23 17:10

%~z0

(Size)檔案大小

696

%~$PATH:0

全路徑

E:\調研專案\批處理\Test.bat

%~dp0

所在資料夾

E:\調研專案\批處理\

%~nx0

檔案全稱

Test.bat

%~fs0

全路徑

E:\調研專案\批處理\Test.bat

%~dp$PATH:0

資料夾

E:\調研專案\批處理\

%~ftza0

檔案所有資訊

--a------ 2016-06-23 17:10 696 E:\調研專案\批處理\Test.bat

%1

第一個附加引數

%2

第二個附加引數

cd /d [path]

可直接跳轉到其他碟符