在 Mono 中,如何获取 Mac (Snow Leopard) 上的 Documents 文件夹的路径?
我正在编写一个 Mono 应用程序,希望找到 Documents 文件夹的完整路径 - 例如 /Users/johnsmith/Documents/
。实现这一目标的最佳方法是什么?
I'm writing a Mono application and would like to find the full path of the Documents folder - e.g. /Users/johnsmith/Documents/
. What's the best way to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以这样做:(
顺便说一句,对于 MonoTouch,它只是
Environment.GetFolderPath (Environment.SpecialFolder.Personal)
)。You can do this:
(Btw, for MonoTouch, It's just
Environment.GetFolderPath (Environment.SpecialFolder.Personal)
).