web-dev-qa-db-ja.com

作業ディレクトリをネットワーク共有に変更します

フォルダ内のすべてのファイルを一覧表示できます:dir \\aenw08v401\FOLDER\I001\*

しかし、cd \\aenw08v401\FOLDER\I001を実行しても、現在の作業ディレクトリはまったく変わりません。

net view \\aenw08v401を実行すると、次のようになります。

Shared resources at \\aenw08v401
Share name  Type  Used as  Comment

-----------------------------------
FOLDER    Disk
The command completed successfully.

不足しているスイッチはありますか、それとも別のコマンドを使用する必要がありますか?

25
tomdemuyt

Windowsコマンドプロンプトcmdは、UNCパスを現在のディレクトリとしてサポートしていません。

C:\Users\User1>cd \\myServer\myShare
CMD does not support UNC paths as current directories.

ソリューション:pushdを使用します。

C:\Users\User1>pushd \\myServer\myShare

Z:\>dir
 Volume in drive Z is MYDRIVE
 Volume Serial Number is 1234-5678

 Directory of Z:\

12/16/2015  11:18 AM    <DIR>          .
12/16/2015  11:18 AM    <DIR>          ..
               0 File(s)              0 bytes
               2 Dir(s)  120,609,575,936 bytes free

Z:\>popd

C:\Users\User1>

代替ソリューション: UNCパスをドライブ文字にマップします。

C:\Users\User1>Net Use Y: \\myServer\myShare 
The command completed successfully.

C:\Users\User1>Y:

Y:\>dir
 Volume in drive Y is MYDRIVE
 Volume Serial Number is 1234-5678

 Directory of Y:\

12/16/2015  11:18 AM    <DIR>          .
12/16/2015  11:18 AM    <DIR>          ..
               0 File(s)              0 bytes
               2 Dir(s)  120,609,575,936 bytes free

Y:\>C:

C:\Users\User1>Net Use /delete Y:
Y: was deleted successfully.
32
Steven