BAT指令碼編寫簡單入門-常用命令
阿新 • • 發佈:2018-11-15
命令視窗常用命令
1、cd 命令
cd //顯示當前目錄
cd .. //退出到上一個目錄
cd /d D: //進入上次D盤所在目錄
cd /d d:\ //進入D盤根目錄
cd /d D:\test //進入D盤下的test目錄
2、md:新建資料夾
md D:\test //在D盤下建立test資料夾 md test1 test2 //在當前目錄下建立test1和test2資料夾
3、dir:顯示目錄中的內容
dir //顯示當前目錄中的資料夾和檔案 dir /b //只顯示當前目錄的的檔名 dir /p //分頁顯示當前目錄中的檔案內容 dir /ad //顯示當前目錄中的資料夾 dir /a-d //顯示當前目錄中的檔案 dir C:\windows //顯示c盤windows下的內容 dir test.txt //顯示當前目錄找那個test.txt的資訊 dir /S //遞迴顯示當前目錄中的內容 dir test* //顯示當前目錄下以test開頭的檔案和資料夾的資訊 dir /AH /OS //值顯示當前目錄中隱藏的檔案和目錄,並按照檔案大小從小到大排序
4、rd:刪除目錄
rd test //刪除當前目錄下的test空資料夾
rd /s /q d:\test //使用安靜模式刪除d:\test(除目錄本身外,還講刪除制定牡蠣下的所有子目錄和檔案)
5、ren:檔案或目錄重新命名
ren test.txt sample.bat //將當前目錄下的test.txt檔案重新命名為sample.bat
ren c:\test test02 //將c盤下的test檔案重新命名為test02
6、tree:顯示目錄結構
tree D:\test //顯示d盤test的目錄結構