windows的batchfile可以有%0-%9參數(shù),其中%0默認表示batchfile的全路徑,%1-%9為用戶的傳入?yún)?shù)。
以下特殊標記可以用來獲得文件的屬性,如果對%0使用特殊標記,表示獲得batachfile的相關屬性,如果%1-%9中某個%*是個文件的路徑,也可以使用如下特殊標記來獲得%*表示文件的相關屬性。
例如:D:\testfolder\test.bat
復制代碼 代碼如下:
echo off
echo path name:
echo %1
echo fully qualified path name:
echo %~f1
echo dirive:
echo %~d1
echo path:
echo %~p1
echo name:
echo %~n1
echo extention:
echo %~x1
echo short name:
echo %~s1
echo attribute:
echo %~a1
echo time:
echo %~t1
echo size:
echo %~z1
echo directory:
echo %~dp1
調(diào)用時為D:\testfolder\test.bat "c:\test\new folder\mytable.txt",輸出如下:
復制代碼 代碼如下:
D:\&;echo off
path name:
"c:\test\new folder\mytable.txt"
fully qualified path name:
c:\test\New Folder\mytable.txt
dirive:
c:
path:
\test\New Folder\
name:
mytable
extention:
.txt
short name:
c:\test\NEWFOL~1\mytable.txt
attribute:
--a------
time:
2010-09-27 15:01
size:
directory:
c:\test\New Folder\
您可能感興趣的文章:- Windows下使用批處理文件.bat刪除舊文件
- Windows 2008 r2任務計劃程序執(zhí)行批處理失敗問題解決方法
- 通過Windows批處理命令執(zhí)行SQL Server數(shù)據(jù)庫備份
- Windows命令行bat批處理延遲sleep方法(批處理延時)
- Windows下bat批處理腳本使用telnet批量檢測遠程端口小記
- Windows使用bat批處理實現(xiàn)守護進程腳本分享
- Windows下自動備份MongoDB的批處理腳本
- windows下使用批處理實現(xiàn)切換JDK環(huán)境變量
- Windows下使用批處理實現(xiàn)啟動關閉mysql
- PHP啟動windows應用程序、執(zhí)行bat批處理、執(zhí)行cmd命令的方法(exec、system函數(shù)詳解)
- Windows運行bat批處理文件時隱藏cmd命令提示符窗口的方法
- windows搜索空文件夾的批處理程序代碼實例