溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

windows常用命令(文件操作篇)

發(fā)布時(shí)間:2020-08-31 13:15:32 來(lái)源:網(wǎng)絡(luò) 閱讀:2240 作者:Lee_吉 欄目:系統(tǒng)運(yùn)維
  1. 切換盤(pán)符:
    根目錄:
    d:
    上級(jí)目錄:
    cd  ..
    相對(duì)路徑:
    cd  test
    絕對(duì)路徑:
    cd  c:\test
    查看當(dāng)前目錄:
    echo  %cd%  或  cd
    切換盤(pán)符:
    cd  /d  e:\test
  2. 環(huán)境變量:
    查看:
    echo  %path%  或  path
    清除當(dāng)前:
    path;
  3. 查看文件/文件夾:
    不含隱藏文件:
    dir
    隱藏文件:
    dir  /a
    排序:
    dir  /on
  4. 屬性操作:
    +  添加屬性
    -  清除屬性
    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
  5. 創(chuàng)建文件:
    空文件:
    echo.  >  test.txt
    帶內(nèi)容:
    echo  abc  >  test.txt
  6. 創(chuàng)建文件夾:
    單個(gè)文件夾:
    md  test
    多個(gè)文件夾:
    md  test1  test2
    多級(jí)目錄:
    md  test1\test2\test3...
  7. 復(fù)制文件:
    單個(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é)束輸入
  8. 復(fù)制文件夾:
    不含隱藏文件:
    xcopy  /y  test1  test2
    隱藏文件:
    xcopy  /y  /h  test1  test2
    含空文件夾:
    xcopy  /y  /e  /h  test1  test2
  9. 刪除文件:
    單個(gè):
    del  /f  /q  a.txt
    多個(gè):
    del  /f  /q  *.txt
    遞歸:
    del  /s  /f  /q  *.txt
  10. 刪除文件夾:
    rd  /s  /q  test
  11. 重命名文件/文件夾:
    單個(gè):
    move  a  aa
    多個(gè):
    ren  *.txt  *.bat
  12. 移動(dòng)文件/文件夾:
    move  /y  test1  test2
  13. 查找/統(tǒng)計(jì)文件:
    顯示行號(hào):
    find  /n  "str"  test.txt
    統(tǒng)計(jì)行數(shù):
    find  /c  "str"  test.txt
    查看文件內(nèi)容:
    findstr  "."  test.txt
  14. 比較文件差異:
    兩個(gè)文件:
    fc  /n  a.txt  b.txt
    多個(gè)文件:
    fc  /n  *.txt  b.txt
  15. 查看文件內(nèi)容:
    顯示所有:
    type  test.txt
    分頁(yè)顯示:
    more  test.txt  #空格顯示下一頁(yè)
  16. 壓縮、解壓縮:
    先決條件:
    安裝winrar軟件
    壓縮、追加:
    rar  a  test.zip  文件/文件夾
    解壓縮:
    rar  e  test.zip  路徑
向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

AI