如何使用cmd访问服务器(\\ Server \ Volume \ File)

时间:2011-09-22 08:32:23

标签: cmd

我需要在我的服务器中获取文件夹名称,因为您知道启动cmd.exe时它的默认路径名称如“C:\ Documents and ....”。我可以通过键入dir *.* /b /o:n > index.txt来获取我的“C:/”中的文件夹名称。

所以我有这个; C:\Documents and Settings\Name>dir *.* /b /o:n > index.txt

如果有办法,我需要这个; \\Server\Volume\File>dir *.* /b /o:n > index.txt

抱歉我的英语不好,任何帮助都很好。

2 个答案:

答案 0 :(得分:14)

使用:

pushd \\Server\Volume
dir
popd

答案 1 :(得分:3)

您可以映射驱动器,然后浏览该目录:

net use Z: \\Server\Volume
cd /d Z:\
dir

希望这会有所帮助:)