learner2010
learner2010

Reputation: 4167

Xcode Location on Disk

I had installed Xcode from the AppStore and I am not sure where it got installed. I do not see a the usual path it gets installed - /Developer/Library. When I search for Xcode, it shows it is under Applications. All it shows is Xcode.app. I am unable to see any of the related Xcode files.

The problem I am facing because of this is, I am unable to uninstall Xcode from my system. Since I am not able to find the install location of Xcode, I am unable to run the uninstall-devtools command.

I have Xcode 4.3.3 and OS 10.7.4.

Would someone be able to help me with this?

Upvotes: 0

Views: 444

Answers (1)

Kristopher Johnson
Kristopher Johnson

Reputation: 82565

To see all the Xcode stuff in the Finder, right-click the Xcode application and choose "Show Package Contents". (An application is really a directory, but the Finder displays it as if it is a single file by default.)

In Terminal, you can do stuff like this:

ls -al /Applications/Xcode.app/Contents

Upvotes: 1

Related Questions