
好词典

缩写自'directory'(目录),源自拉丁语'directorium',意为指导或管理列表。
❶ 计算机术语,指目录或文件夹,用于存储和组织文件。通常用于命令行操作系统中查看当前目录内容。
“Type 'dir' to list all files in the current directory.”
(输入'dir'命令可列出当前目录下的所有文件。)
“The dir command shows the creation date of each file.”
(dir命令会显示每个文件的创建日期。)
dir /p — 分页显示目录内容,当文件过多时避免信息一次性滚动超出屏幕。
“For long listings, use 'dir /p' to view page by page.”
(当列表过长时,使用'dir /p'进行分页查看。)
dir *.txt — 使用通配符仅显示特定类型的文件,此处示例为所有txt文本文件。
“To find text documents, enter 'dir *.txt' in the command line.”
(要查找文本文档,在命令行输入'dir *.txt'。)