cmd 指令 java
常用cmd指令行,很簡單
- md(make directory):建立檔案夾 如:md test1;
- rd(remove directory):删除空檔案夾 如:rd test1;若檔案夾包含其他檔案,則無法删除;
- del : 删除單個檔案 如 del 1.doc;删除 所有doc字尾的檔案 如del *.doc;删除包含檔案的檔案夾 del test1 再選擇 Y;
- cd.. 傳回上一級;注意cd後帶兩點
- cd 進入目前目錄某檔案夾 cd test1
- 進入某盤,直接輸入盤符 如 d:
- 檢視目前目錄含有哪些檔案,直接輸 dir
- 目前檔案夾下建立單個檔案 :type nul>1.txt 建立1.txt檔案,内容為null;或者 echo null>2.doc 建立名為2的doc檔案,内容為空;