windows中的常用Dos命令
Posted jason-gan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了windows中的常用Dos命令相关的知识,希望对你有一定的参考价值。
# __切换盘符目录__
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:Users15583>D:
D:>mkdir testapp
D:>cd test
D: est>mkdir app1help
D: est>ls
app app1
D: est>type nul>test.txt
D: est>ls
app app1 test.txt
D: est>echo ‘hello,python‘>test1.txt
D: est>ls
app app1 test.txt test1.txt
D: est>type test1.txt
‘hello,python‘
D: est>rd app
D: est>ls
app1 test.txt test1.txt
D: est>rd app1
目录不是空的。
D: est>rd /s/q app1
D: est>ls
test.txt test1.txt
D: est>del test.txt
D: est>ls
test1.txt
D: est>cd ..
D:>rd /s/q test
D:>cls
以上是关于windows中的常用Dos命令的主要内容,如果未能解决你的问题,请参考以下文章