1.dir列出当前目录下的文件夹和文件
2.cd进入文件夹,返回上一级 cd ..
3.md 创建文件夹 md + 文件夹名
创建多个文件夹 md a c 创建一个多级的文件夹 md e\f\g 创建带空格的文件夹 md "helloe world"
4.删除文件夹 rd,del
rd a 删除a文件夹 rd a c 删除a和c文件夹 rd e/s 删除e下面的所有子文件夹及当前文件夹 del 1.text删除文件1.text
5.重命名文件夹 ren
ren +源文件的名称 + 要改的文件名 如 ren "hellow world" hellow
6.创建文件内容 echo hellow doudou >1.text 创建一个内容为hellow doudou的到1.text的文件里
7.拷贝文件 copy
copy hellow.text document 拷贝hellow.text文件到document目录下 copy hellow.text document\good.text 拷贝hellow.text到document下,并且重新命名为good.text copy document node 将document文件夹下的所有文件拷贝到node目录下 copy con conso.text 输入内容后,按enter,就将内容加到conso.text里面了 copy a.text+b.text+c.text document\all.text 将a.text,b.tetx,c.text的内容拷贝到document目录下,并且新建的all.text的里面
8.深度拷贝xcopy
xcopy document notebook\s 将document里面文件及document文件本身拷贝到notebook里面
9.剪切 move
move document note 移动document文件夹到note里面 move document note\doc 将document文件夹移到note里,并重新命名为doc
10.设置文件属性 attrib
attrib +h helow.text 将helow.text设为隐藏 取消隐藏 -h 只读 +r 增加多个属性 attrib +h +r +s helow.text