Reputation: 1
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
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