生成多层目录结构
mkdir com\iss\test
目录关联
mklink /j HLServer E:\workspace\HLServer
写道
mklink [[/D] | [/H] | [/J]] linkName target
/D – Creates a directory symbolic link. Default is a file symbolic link.
/H – Creates a hard link instead of a symbolic link.
/J – Creates a Directory Junction.
linkName – Specifies the new symbolic link name.
target – Specifies the path (relative or absolute) that the new link refers to.
/D – Creates a directory symbolic link. Default is a file symbolic link.
/H – Creates a hard link instead of a symbolic link.
/J – Creates a Directory Junction.
linkName – Specifies the new symbolic link name.
target – Specifies the path (relative or absolute) that the new link refers to.
查看进程
tasklist
杀掉进程
taskkill /pid 443
dos基本命令
• dir : 列出当前目录下的文件以及文件夹
• md : 创建目录
• rd : 删除目录
• cd : 进入指定目录
• cd.. : 退回到上一级目录
• cd/ : 退回到根目录
• echo '内容' > test.txt : 往test.txt写入内容
• cat test.txt :查看内容
• del : 删除文件
• exit : 推出dos命令行