0
PS D:\>

When I am trying to do this →

PS D:\> cd Academy/Lynda LinkedIn/PHP/0-Learning Composer The Php Dependency Manager/Exercise Files/02_01

It generates this error →

https://i.sstatic.net/0dN1F.png

7
  • 1
    Just CD d:\Academy .....
    – anon
    Commented Nov 9, 2020 at 0:50
  • 2
    your target path has SPACES in it ... so you need to enclose it in quotes. [grin]
    – Lee_Dailey
    Commented Nov 9, 2020 at 0:51
  • try cd acad<tab> e.t.c. let autocomplete help you.
    – barlop
    Commented Nov 9, 2020 at 0:55
  • Thanks, can someone tell me what is the final to be copy posted. Commented Nov 9, 2020 at 0:56
  • cd 'Academy\Lynda LinkedIn\PHP\0-Learning Composer The Php Dependency Manager\Exercise Files\02_01' Commented Nov 9, 2020 at 6:46

1 Answer 1

1

You need to enclose the path in quotes because it contains spaces.

cd "Academy/Lynda LinkedIn/PHP/0-Learning Composer The Php Dependency Manager/Exercise Files/02_01"

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .