dir : 列出当前目录下所有文件及文件夹
dir
md : 创建目录
md
rd : 删除目录
rd
cd : 进入指定目录
cd
cd .. : 进入上一级目录
cd ..
cd \ : 进入根目录
cd \
more : 查看文本内容
more
del : 删除文件
del
exit : 关闭dos界面
exit
echo hello,world > temp.txt : 覆盖写入指定文件
echo hello,world > temp.txt
echo hello,world >> temp.txt : 追加写入指定文件
echo hello,world >> temp.txt