wrward1
wrward1

Reputation: 1

Git Command - not recognizing ls command

I am using Udacity to learn programming but I am having problems.

I am able to locate the file I want at C:/Program Files/Sublime Text 2/sublime_text.exe but anytime I try to use Git command line to find it it tells me No such file or directory exists.

I have uploaded pictures1, 2 showing where it shows the file in the directory and it telling me that no such directory exists.

Upvotes: 0

Views: 40

Answers (1)

CodeWizard
CodeWizard

Reputation: 142342

You are on windows, if you have spaces you need to use quotes
ls "C:/Program Files/Sublime Text 2/sublime_text.exe"

Upvotes: 1

Related Questions