您好,登錄后才能下訂單哦!
根目錄:
d:
上級(jí)目錄:
cd ..
相對(duì)路徑:
cd test
絕對(duì)路徑:
cd c:\test
查看當(dāng)前目錄:
echo %cd% 或 cd
切換盤(pán)符:
cd /d e:\test
查看:
echo %path% 或 path
清除當(dāng)前:
path;
不含隱藏文件:
dir
隱藏文件:
dir /a
排序:
dir /on
+ 添加屬性
- 清除屬性
r 只讀
a 讀寫(xiě)
s 系統(tǒng)
h 隱藏
#系統(tǒng)文件與普通文件的區(qū)別:系統(tǒng)文件不允許用戶直接修改屬性,普通文件允許用戶修改屬性
隱藏文件:
attrib +h a.txt
只讀文件:
attrib +r a.txt
讀寫(xiě):
attrib +a a.txt
顯示文件:
attrib -h a.txt
遞歸操作:
attrib /s +h *.txt
空文件:
echo. > test.txt
帶內(nèi)容:
echo abc > test.txt
單個(gè)文件夾:
md test
多個(gè)文件夾:
md test1 test2
多級(jí)目錄:
md test1\test2\test3...
單個(gè):
copy /y a.txt a.txt.back
多個(gè):
copy /y *.txt *.txt.back
合并:
copy a.txt+b.txt c.txt
copy *.txt cmb.txt
輸入多行文本到文件:
copy con test.txt #以ctl+z后按回車結(jié)束輸入
不含隱藏文件:
xcopy /y test1 test2
隱藏文件:
xcopy /y /h test1 test2
含空文件夾:
xcopy /y /e /h test1 test2
單個(gè):
del /f /q a.txt
多個(gè):
del /f /q *.txt
遞歸:
del /s /f /q *.txt
rd /s /q test
單個(gè):
move a aa
多個(gè):
ren *.txt *.bat
move /y test1 test2
顯示行號(hào):
find /n "str" test.txt
統(tǒng)計(jì)行數(shù):
find /c "str" test.txt
查看文件內(nèi)容:
findstr "." test.txt
兩個(gè)文件:
fc /n a.txt b.txt
多個(gè)文件:
fc /n *.txt b.txt
顯示所有:
type test.txt
分頁(yè)顯示:
more test.txt #空格顯示下一頁(yè)
先決條件:
安裝winrar軟件
壓縮、追加:
rar a test.zip 文件/文件夾
解壓縮:
rar e test.zip 路徑
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。