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.
我有一个用于 Windows 和 Mac 项目的共享代码库 (dll)。我正在寻找获取 Mac Library 文件夹路径的最佳(受支持)方式,以便我的项目符合 Mac App Store 的要求。
现在我Environment.SpecialFolder.LocalApplicationData用来获取路径,但这并没有给我正确的文件夹。
Environment.SpecialFolder.LocalApplicationData
有谁知道我应该用什么来获得~/Library/ ?
~/Library/
我没有找到任何直接映射的东西,所以我最终编写了以下代码:
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal), "Library")