1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

コマンドプロンプトでDドライブに移動する

Posted at

コマンドプロンプトでDドライブに移動する

windowsのコマンドプロンプトで、以下のようにDドライブに移動しようとしても移動できませんでした。。。
NG
C:\>cd D:

調べたところDドライブに移動する際は、通常とは違う方法が必要なようです。
参考の記事に記載通りにコマンドを打ったところ「アクセスが拒否」されてしまいました。。。

NG
C:\>cd C:\Users\ユーザー名>D:
アクセスが拒否されました。

解決方法

cdコマンドを使わずにCドライブディレクトリでDドライブを指定すると移動できました。
OK
C:\>D:

D:\>

または、dスイッチと呼ばれる「/d」を入れると移動できるようです

dスイッチ
C:\>cd /d D:

D:\>

あと、アクセス拒否された件に関しては、一つずつ階層を上るようにしたら、アクセス拒否がされなくなりました。

OK
C:\>cd C:\Users
C:\Users>

C:\Users>cd ユーザー名
C:\Users\ユーザー名>cd D:

D:\>

参考

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?