Windows 操作系统中的 Outlook 签名文件夹
我一直在开发一个与 VSTO 组件集成的应用程序,以便利用包括 Outlook 在内的 MS Office。在此,我有一个方法可以读取所有定义的 Outlook 签名并将其导入到我们的应用程序中。一切正常,我正在使用以下逻辑访问签名位置。
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData),@"Microsoft\Signatures");
上面的代码适用于英文版 Windows(en-us、en-gb 等)。
有人接触过使用德语或其他语言安装的 Microsoft 操作系统吗?如果是这样,我如何概括或定制执行上述操作的逻辑?
I have been working on an application which integrate with VSTO components in order to leverage MS Office including Outlook. In this, I have a method which read the all defined outlook signature and import it into our application. All works well and I am accessing the signature location using the following logic.
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData),@"Microsoft\Signatures");
The above code works fine with English version of Windows (en-us,en-gb etc).
Does someone have exposure towards Microsoft OS installed using German language or any other? If so, how do I generalize or customize logic which does the aforementioned?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Outlook 文件夹没有“特殊文件夹”API。您唯一的选择是将其翻译成您想要支持的每种语言。
There is no "special folder" api for outlook folders. Your only choice is to translate it to each language you want to support.