您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
根目录:
d:
上级目录:
cd ..
相对路径:
cd test
绝对路径:
cd c:\test
查看当前目录:
echo %cd% 或 cd
切换盘符:
cd /d e:\test
查看:
echo %path% 或 path
清除当前:
path;
不含隐藏文件:
dir
隐藏文件:
dir /a
排序:
dir /on
+ 添加属性
- 清除属性
r 只读
a 读写
s 系统
h 隐藏
#系统文件与普通文件的区别:系统文件不允许用户直接修改属性,普通文件允许用户修改属性
隐藏文件:
attrib +h a.txt
只读文件:
attrib +r a.txt
读写:
attrib +a a.txt
显示文件:
attrib -h a.txt
递归操作:
attrib /s +h *.txt
空文件:
echo. > test.txt
带内容:
echo abc > test.txt
单个文件夹:
md test
多个文件夹:
md test1 test2
多级目录:
md test1\test2\test3...
单个:
copy /y a.txt a.txt.back
多个:
copy /y *.txt *.txt.back
合并:
copy a.txt+b.txt c.txt
copy *.txt cmb.txt
输入多行文本到文件:
copy con test.txt #以ctl+z后按回车结束输入
不含隐藏文件:
xcopy /y test1 test2
隐藏文件:
xcopy /y /h test1 test2
含空文件夹:
xcopy /y /e /h test1 test2
单个:
del /f /q a.txt
多个:
del /f /q *.txt
递归:
del /s /f /q *.txt
rd /s /q test
单个:
move a aa
多个:
ren *.txt *.bat
move /y test1 test2
显示行号:
find /n "str" test.txt
统计行数:
find /c "str" test.txt
查看文件内容:
findstr "." test.txt
两个文件:
fc /n a.txt b.txt
多个文件:
fc /n *.txt b.txt
显示所有:
type test.txt
分页显示:
more test.txt #空格显示下一页
先决条件:
安装winrar软件
压缩、追加:
rar a test.zip 文件/文件夹
解压缩:
rar e test.zip 路径
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。