Net Use 与 PUSHD 和 Windows Explorer 有何不同?
How is Net Use different from PUSHD and the Windows Explorer?
间歇性地我发现 net use 感觉不像是看到它前面的服务器。
以下命令有效:
pushd \place\otherplace.2.0\
Windows explorer 也始终如一地带我去我想去的地方。
不过,由于某些原因,以下有时 returns 路径不存在。
net use R: \place\otherplace.2.0\
net use
的实施有何不同?
对于任何编写可能遇到此问题的脚本的人来说,实际区别在于 pushd
和 windows 资源管理器都接受 \path\to\directory\
net use
以尾部斜杠失败,需要 \path\to\directory
pushd
和 net use
命令之间的基本区别在于,用户可以选择所需的驱动器号,以防用户需要在该特定网络驱动器上访问更多脚本。
另一方面,在脚本中使用 pushd
,用户可以像 cd
命令一样使用该驱动器。
请记住,PushD 命令从 Z: 向下分配驱动器号,并将使用它找到的第一个未使用的驱动器号。
间歇性地我发现 net use 感觉不像是看到它前面的服务器。
以下命令有效:
pushd \place\otherplace.2.0\
Windows explorer 也始终如一地带我去我想去的地方。
不过,由于某些原因,以下有时 returns 路径不存在。
net use R: \place\otherplace.2.0\
net use
的实施有何不同?
对于任何编写可能遇到此问题的脚本的人来说,实际区别在于 pushd
和 windows 资源管理器都接受 \path\to\directory\
net use
以尾部斜杠失败,需要 \path\to\directory
pushd
和 net use
命令之间的基本区别在于,用户可以选择所需的驱动器号,以防用户需要在该特定网络驱动器上访问更多脚本。
另一方面,在脚本中使用 pushd
,用户可以像 cd
命令一样使用该驱动器。
请记住,PushD 命令从 Z: 向下分配驱动器号,并将使用它找到的第一个未使用的驱动器号。