2019-03-10 14:37:32 +00:00
|
|
|
# dir
|
|
|
|
|
2021-08-02 09:41:09 +01:00
|
|
|
> 列出目录的内容。
|
2021-10-01 19:28:01 +01:00
|
|
|
> 更多信息:<https://docs.microsoft.com/windows-server/administration/windows-commands/dir>.
|
2019-03-10 14:37:32 +00:00
|
|
|
|
2021-08-02 09:41:09 +01:00
|
|
|
- 显示当前目录的内容:
|
2019-03-10 14:37:32 +00:00
|
|
|
|
|
|
|
`dir`
|
|
|
|
|
2021-08-02 09:41:09 +01:00
|
|
|
- 显示指定目录的内容:
|
2019-03-10 14:37:32 +00:00
|
|
|
|
|
|
|
`dir {{目录的路径}}`
|
|
|
|
|
2021-08-02 09:41:09 +01:00
|
|
|
- 显示当前目录的内容,包括隐藏的文件:
|
2019-03-10 14:37:32 +00:00
|
|
|
|
|
|
|
`dir /A`
|
|
|
|
|
2021-08-02 09:41:09 +01:00
|
|
|
- 显示指定目录的内容,包括隐藏的文件:
|
2019-03-10 14:37:32 +00:00
|
|
|
|
|
|
|
`dir {{目录的路径}} /A`
|