Reputation: 123
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
Reputation: 80013
cd /d E:\Installation Drive\Derby\db-derby-10.9.1.0-bin\bin
would probably be the easiest way...
Upvotes: 1
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
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