mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
20 lines
390 B
Markdown
20 lines
390 B
Markdown
# dir
|
|
|
|
> 列出目录的内容。
|
|
> 更多信息:<https://docs.microsoft.com/windows-server/administration/windows-commands/dir>.
|
|
|
|
- 显示当前目录的内容:
|
|
|
|
`dir`
|
|
|
|
- 显示指定目录的内容:
|
|
|
|
`dir {{目录的路径}}`
|
|
|
|
- 显示当前目录的内容,包括隐藏的文件:
|
|
|
|
`dir /A`
|
|
|
|
- 显示指定目录的内容,包括隐藏的文件:
|
|
|
|
`dir {{目录的路径}} /A`
|