新建path.bat檔案,內容如下:
@echo off
echo 當前碟符:%~d0
echo 當前碟符和路徑:%~dp0
echo 當前批處理全路徑:%~f0
echo 當前碟符和路徑的短檔名格式:%~sdp0
echo 當前cmd預設目錄:%cd%
echo 目錄中有空格也可以加入""避免找不到路徑
echo 當前碟符:"%~d0"
echo 當前碟符和路徑:"%~dp0"
echo 當前批處理全路徑:"%~f0"
echo 當前碟符和路徑的短檔名格式:"%~sdp0"
echo 當前cmd預設目錄:"%cd%"
pause
放到桌面,雙機執行如下:
獲取程式當前目錄的絕對路徑
函式 char getcwd char buf,size t size 作用 把當前目錄的絕對位址儲存到 buf 中,buf 的大小為 size。如果 size太小無法儲存該位址,返回 null 並設定 errno 為 erange。可以採取令 buf 為 null並使 size 為負值來使 get...
linux下獲取程式當前目錄絕對路徑
文章出自 1 shell版 1 2 獲取當前指令碼所在絕對路徑 cur dir cd dirname 0 pwd 2 c語言版 方法一 用realpath函式。這種方法用於開機啟動程式獲取自身目錄會出錯。1 2 3 4 5 6 7 8 9 charcurrent absolute path max ...
linux下獲取程式當前目錄絕對路徑
1.shell 版本 獲取當前指令碼所在絕對路徑 cur dir cd dirname 0 pwd 2.c語言版本 方法 一 用realpath函式。這種方法用於開機啟動程式獲取自身目錄會出錯 char current absolute path max size 獲取當前目錄絕對路徑 if nul...