本帖最后由 lucidlynx88 于 2021-11-20 22:29 编辑
高级话题的回复
我去看了官网原文的回答If used with only a drive letter (for example, cd C:), cd displays the names of the current directory in the specified drive.
个人是如下翻译的
cd [<drive>:]显示此盘符的当前目录;
另外当前盘符的当前目录是可以改变的
cd [<drive>:[directory]]
[img][/img]
那么现在问题来了,如果我现在在D:,如何直接跳转到C:当前目录?
个人理解用for循环读取D:当前目录,在进行跳转- for /f %%i in ('cd c:') do (cd /d %%i)
复制代码 [img][/img]
图片上传不了,暂就这样吧,以后在编辑。 |