Windows 操作系统中的 Outlook 签名文件夹

发布于 2024-12-07 07:30:40 字数 371 浏览 0 评论 0原文

我一直在开发一个与 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

玉环 2024-12-14 07:30:40

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文