windows中的常用Dos命令

时间:2021-06-02 11:52:17

# __切换盘符目录__
E/D:  # 从C盘切换到E盘或者D盘
# __切换到指定文件夹下__
cd folder_name(指定文件夹名--相对/绝对路径)
cd .. # 返回上一级目录
cd / # 返回当前盘符根目录
# __清空当前电脑屏幕__
cls

# __创建文件夹__
mkdir folder_name(文件夹名)

mkdir 文件夹名\子文件夹 # 注意分隔符是\,而不是/

# __创建任意后缀的空文件__
type nul> file.postfix(文件名.后缀)
# __创建有内容的文件__
echo 'content'(内容) > file.postfix(文件名.后缀)
# __查看文件内容__
type file.postfix(文件名.后缀)
# __查看目录及子文件__
dir 或 ls
# __删除空文件夹__
rd folder_name(空文件夹名)
# __删除文件及所有子文件__
rd /s/q folder_name(文件夹名)
# __删除文件__
del file.postfix(文件名.后缀)

# ============================

C:\Users\15583>D:

D:\>mkdir test\app

D:\>cd test

D:\test>mkdir app1\help

D:\test>ls
app app1

D:\test>type nul>test.txt

D:\test>ls
app app1 test.txt

D:\test>echo 'hello,python'>test1.txt

D:\test>ls
app app1 test.txt test1.txt

D:\test>type test1.txt
'hello,python'

D:\test>rd app

D:\test>ls
app1 test.txt test1.txt

D:\test>rd app1
目录不是空的。

D:\test>rd /s/q app1

D:\test>ls
test.txt test1.txt

D:\test>del test.txt

D:\test>ls
test1.txt

D:\test>cd ..

D:\>rd /s/q test

D:\>cls