根目录:
d:
上级目录:
cd ..
相对路径:
cd test
绝对路径:
cd c:\test
查看当前目录:
echo %cd%
不含隐藏文件:
dir
隐藏文件:
dir /a
排序:
dir /on
隐藏:
attrib +h test
显示:
attrib -h test
空文件:
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
不含隐藏文件:
xcopy test1 test2
隐藏文件:
xcopy /h test1 test2
单个:
del /q a.txt
多个:
del /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
原文地址:http://blog.51cto.com/12173069/2071831
时间: 2024-10-12 19:50:09