cmd - 是否可以临时将可用驱动器号分配给本地路径?
在 Windows 上使用 cmd,可以很容易地使用 Pushd 将驱动器号分配给 UNC 路径:
C:\Windows\> pushd \\server\share\path
Y:\> popd
C:\Windows\>
但是我希望能够对本地路径执行相同的操作,因为它会缩短文件路径,并且我必须使用不支持具有很长路径的文件的命令。
这个想法如下,没有在脚本中硬编码 G:
,因为它可以在另一台机器上使用。
subst G: .
pushd G:\
(other commands)
popd
subst G: /d
我已经尝试过 pushd \\?\%CD%< /code>
但不幸的是它不起作用......
有人有一个魔术吗?
谢谢
Using cmd on Windows, it is easy to assign a drive letter to a UNC path with pushd:
C:\Windows\> pushd \\server\share\path
Y:\> popd
C:\Windows\>
However I would like to be able to do the same with local paths because it will shorten the file paths and I have to use commands that do not support files having a very long path.
The idea is the following without the G:
hardcoded in the script, because it could be used on another machine.
subst G: .
pushd G:\
(other commands)
popd
subst G: /d
I have tried pushd \\?\%CD%
but unfortunately it does not work…
Does anybody have a magic trick for that?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是 Windows 7,则不必使用驱动器号。您可以改为创建符号链接。
要链接到文件夹,请使用:
If your'e on windows 7 you don't have to use drive letters. You can create a symbolic link instead.
To link to a folder use:
这是一个我不喜欢的临时解决方案,但尝试以编程方式查找从
Z:
开始的第一个可用驱动器号,就像 Pushd 所做的那样。我认为它很容易失败。This is a temporary solution that I dislike but tries to find programatically the first available drive letter starting from
Z:
as pushd does. I suppose that it can fail easily.