批处理脚本 - 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.htm
广告