24 lines
461 B
Markdown
24 lines
461 B
Markdown
# dir
|
|
|
|
> 列出目录内容。
|
|
> 更多信息:<https://learn.microsoft.com/windows-server/administration/windows-commands/dir>。
|
|
|
|
- 显示当前目录的内容:
|
|
|
|
`dir`
|
|
|
|
- 显示指定目录的内容:
|
|
|
|
`dir {{path\to\directory}}`
|
|
|
|
- 显示当前目录的内容,包括隐藏文件:
|
|
|
|
`dir /a`
|
|
|
|
- 显示指定目录的内容,包括隐藏文件:
|
|
|
|
`dir {{path\to\directory}} /a`
|
|
|
|
- 仅显示目录和文件的列表,不附加其他信息:
|
|
|
|
`dir /b` |