它是將擴充套件名與檔案型別(FTYPE
)相關聯的批次處理命令,顯示現有關聯或刪除關聯。
語法
assoc – Displays all the file extensions
assoc | find 「.ext」 – Displays only those file extensions which have the extension ext.
範例
將以下程式碼儲存在檔案:assoc.bat 中,如下所示 -
@echo off
assoc > F:\worksp\batch_script\lists.txt
assoc | find ".doc" > F:\worksp\batch_script\listsdoc.txt
檔案關聯列表將定向輸出到檔案lists.txt
。以下輸出顯示了執行上述批次處理檔案後,listsdoc.txt
檔案中的內容。
F:\worksp\batch_script>assoc.bat
listsdoc.txt
檔案中的內容 -
.doc=Word.Document.8
.dochtml=wordhtmlfile
.docm=Word.DocumentMacroEnabled.12
.docmhtml=wordmhtmlfile
.docx=Word.Document.12
.docxml=wordxmlfile