如何在 Perl 中获取替换的驱动器号?
我需要在 Perl 中获取替换的驱动器号。 有人可以帮助我吗? $ENV{SYSTEMDRIVE} 不起作用; 它给了我真正的逻辑驱动器号,而不是替换的驱动器号。
I need to get substed drive letter in Perl. Could anyone kindly help me?
$ENV{SYSTEMDRIVE} does not work; it gives me real logical drive letter, not the substed one.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您是否在寻找 Win32::FileOp?
Are you looking for Win32::FileOp?
如果您想自己执行此操作,则可以捕获 subst 命令的输出并对其进行处理,因为它会输出所有当前替换的驱动器。
为此,您需要一个函数来返回替换后的输出,如下所示:
此输出:
在我的系统上,该系统只有一个替换后的驱动器。
If you want to do it yourself, you could capture the output of the subst command and process it, since it outputs all current substituted drives.
In order to do this, you need a function to return the subst'ed output, as follows:
This outputs:
on my system which has only the one subst'ed drive.
(我知道回复确实很晚)但就在今天我需要这样的东西,而 Win32::FileOp 无法在我的系统上编译。 所以我调用了 subst 并将虚拟驱动器替换为“real”; 代码片段如下:
注意:我使用#D 进行quickNdirty 调试语句,
我对此进行了三个级别的测试,即 w: subst 到 x:、x: subst 到 y: 和 y: subst 到 c:
(Really late response, I know) but just today I need something like this and Win32::FileOp would not compile on my system. So I invoked subst and substituted virtual drives with "real"; snippet follows:
Notes: I use #D for quickNdirty debug statements
I tested this to three levels i.e. w: subst to x:, x: subst to y: and y: subst to c: