- 批处理脚本教程
- 批处理脚本 - 主页
- 批处理脚本 - 概述
- 批处理脚本 - 环境
- 批处理脚本 - 命令
- 批处理脚本 - 文件
- 批处理脚本 - 语法
- 批处理脚本 - 变量
- 批处理脚本 - 注释
- 批处理脚本 - 字符串
- 批处理脚本 - 数组
- 批处理脚本 - 决策制定
- 批处理脚本 - 运算符
- 批处理脚本 - DATE &TIME
- 批处理脚本 - 输入 / 输出
- 批处理脚本 - 返回码
- 批处理脚本 - 函数
- 批处理脚本 - 进程
- 批处理脚本 - 别名
- 批处理脚本 - 设备
- 批处理脚本 - 注册表
- 批处理脚本 - 网络
- 批处理脚本 - 打印
- 批处理脚本 - 调试
- 批处理脚本 - 日志记录
- 批处理脚本资源
- 批处理脚本 - 快速指南
- 批处理脚本 - 实用资源
- 批处理脚本 - 讨论
批处理脚本 - 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
广告