Xcode 4.3.2 shows hidden files

I am using Xcode 4.3.2 and I am trying to add some SDK links to my project. I can view files using Finder, since I used a terminal script to view hidden files. However, when I go to the user's home directory in the Xcode finder, it does not display the "hidden" Library folder in my user profile that stores my SDK files.

Scratch head

+6
source share
4 answers

Press and hold ⌘ + shift and . .

Then you can switch to viewing hidden / non-hidden files.

+12
source

Answering you 9 months later from OS X 10.8 Mountain Lion ...

Press ⌘ Shift G from the Xcode Open dialog box - this is the Go To Folder command from the Finder. This also works in the Xcode Open dialog box. You can go to the "Library" or, as I did below, go to the hidden .config directory by typing ".config"

This screenshot shows both the process and the result of opening the .config folder. Please note that I have already "gone" to the .config folder once, therefore it is displayed on the left, above the Application.

+8
source

Which team are you using? Use Bellow Command, it worked for me.

If the Library folder does not appear in your folder, enter the command "chflags nohidden ~ / Library /" in the Terminal application (Applications-> Utilities-> Terminal)

+1
source

Had a similar problem (but arrived on this page looking for answers).

I deleted the file link in Xcode, which I really wanted to save, but the file still existed in finder.

Even if the file is in the correct folder, Xcode will not confirm it until you re-add it through File> Add Files to "Your Project"

What I am doing is that the files in the folders of the code project and those that are really included in the Xcode project are two different things.

0
source

Source: https://habr.com/ru/post/916268/


All Articles