Gaurav
Gaurav

Reputation: 123

Command Prompt is not working properly

I want to go from C drive to E:\Installation Drive\Derby\db-derby-10.9.1.0-bin\bin"using command prompt but I am not able to do this. Can anyone give me the solution? I tried following lines of code:

Microsoft Windows [Version 6.0.6002] Copyright (c) 2006 Microsoft Corporation. All rights reserved.

C:\Users\Gaurav>cd/

C:\>cd E:

E:\

C:\>cd E:\Installation Drive\Derby\db-derby-10.9.1.0-bin\bin

C:\>cd E:

E:\Installation Drive\Derby\db-derby-10.9.1.0-bin\bin

C:\>cd E:

E:\Installation Drive\Derby\db-derby-10.9.1.0-bin\bin

C:\>

Upvotes: 0

Views: 397

Answers (3)

Magoo
Magoo

Reputation: 80013

cd /d E:\Installation Drive\Derby\db-derby-10.9.1.0-bin\bin

would probably be the easiest way...

Upvotes: 1

NoNaMe
NoNaMe

Reputation: 6222

Try to type like this To change the drive E: then to go to folder use cd and then past the location.

like

E: cd Installation Drive\Derby\db-derby-10.9.1.0-bin\bin

and press enter button. Hope this will help

Upvotes: 0

ellak
ellak

Reputation: 2561

Try typing E: to change drive then cd "Installation Drive\Derby\db-derby-10.9.1.0-bin\bin" to change directory.

Upvotes: 1

Related Questions