ios开发中需要知道的部分文件路径

首先command + shift + G (编辑前用鼠标点击一下mac 桌面非文件部分)弹出前往文件夹弹框,将要查找的下列路径粘贴进去即可

1 xcode 插件路径:

~/Library/Application Support/Developer/Shared/Xcode/Plug-ins

2 xcode 文档路径:

~/Library/Developer/Shared/Documentation/DocSets

3 模拟器路径 (里面是所有版本的模拟器信息,如iPhone 6、iPhone 6 plus等):

~/Library/Developer/CoreSimulator/Devices

4 APP 沙盒路径:

~/Library/Developer/CoreSimulator/Devices/BFF78360-E122-4620-A1E8-16E3841047EB/data/Containers/Data/Application
其中BFF78360-E122-4620-A1E8-16E3841047EB表示的是某个模拟器设备标识,比如iPhone 6的 标识。

5 读取xcode UUID

在命令行输入以下指令
defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID

6 显示或隐藏隐藏文件(在命令行操作)

早期的OS X(10.6~10.8)系统可以使用如下两条命令来开始或者关闭系统隐藏文件的显示参考:

//显示隐藏文件
$ defaults write com.apple.Finder AppleShowAllFiles Yes && killall Finder
//不显示隐藏文件
$ defaults write com.apple.Finder AppleShowAllFiles No && killall Finder

当升级到OS X 10.9 Mavericks版本之后,这两条命令需要做一些修改,变成了如下命令:
//显示隐藏文件
$ defaults write com.apple.finder AppleShowAllFiles Yes && killall Finder
//不显示隐藏文件
$ defaults write com.apple.finder AppleShowAllFiles No && killall Finder

你可能感兴趣的:(ios开发中需要知道的部分文件路径)