批处理脚本 - ASSOC

这是一个批处理命令,用于将扩展名与文件类型 (FTYPE) 关联、显示现有关联或删除关联。

语法

assoc – Displays all the file extensions 
assoc | find “.ext” – Displays only those file extensions which have the extension ext.

示例

@echo off 
assoc > C:\lists.txt 
assoc | find “.doc” > C:\listsdoc.txt

输出

文件关联列表将被路由到文件lists.txt。 以下输出显示了运行上述批处理文件后,listsdoc.txt 文件中的内容。

.doc=Word.Document.8 
.dochtml=wordhtmlfile 
.docm=Word.DocumentMacroEnabled.12 
.docmhtml=wordmhtmlfile 
.docx=Word.Document.12 
.docxml=wordxmlfile

❮ batch_script_commands.html