以下是一些常用的 DOS 命令及其参数的中文详解:

1. cd (Change Directory) - 切换目录

  •  /d - 切换到指定盘符的根目录。

  cd /d D:\

2. dir (Directory) - 查看文件和目录列表

  •  /w - 以宽格式显示目录内容。

  dir /w

  •  /p - 逐页显示目录内容。

  dir /p

3. copy - 复制文件

  •  /v - 验证每个文件的复制是否成功。

  copy /v source_file destination

  •  /y - 在无需确认时覆盖目标文件。

  copy /y source_file destination

4. del (Delete) - 删除文件

  •  /p - 在删除每个文件之前请求确认。

  del /p filename.txt

5. rename (Rename) - 重命名文件
rename old_filename new_filename

6. mkdir (Make Directory) - 创建目录
mkdir new_directory

7. rmdir (Remove Directory) - 删除目录

  •  /s - 删除目录及其子目录。

  rmdir /s /q directory_name

8. move - 移动文件或目录
move source destination

9. type - 显示文件内容
type filename.txt

10. echo - 在屏幕上显示消息或开启/关闭回显

  •  on - 开启回显。

  echo on

  •  off - 关闭回显。

  echo off

11. attrib (Attributes) - 显示或更改文件属性

  •  + - 添加属性。

  attrib +r filename.txt

  •  - - 移除属性。

  attrib -r filename.txt

12. where - 在系统路径中查找文件
where filename

13. ipconfig - 显示网络配置信息
ipconfig

14. systeminfo - 显示系统信息
systeminfo

15. tasklist - 显示运行中的进程
tasklist

这些是一些基本的 DOS 命令及其参数的中文详解。具体命令和参数的使用可以根据实际需要灵活调整。


转载请注明出处:http://www.pingtaimeng.com/article/detail/10081/DOS 命令