Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 mac 上获取“usr/local”路径。怎么走这条路。是否有任何标准功能。我需要为此使用环境变量还是有其他方法。
/usr/local 只是一个 Unix 约定,而不是 OS X 识别的东西。NSHomeDirectory(定义在 中)如果您没有被沙箱化,则会为NSPathUtilities.h您提供用户的主目录( )。~/但如果你想要 /usr/local,只需使用 /usr/local。
NSHomeDirectory
NSPathUtilities.h
~/