Windows“文档和设置”用其他语言

发布于 2024-10-15 19:22:41 字数 248 浏览 6 评论 0原文

我的 C# 程序遍历驱动器以获取存储在用户配置文件文件夹下的一些数据。我需要知道某个特定文件夹是否是“文档和设置”。我无法使用 SpecialFolders 技巧,因为我遍历的不是我的系统驱动器,而是一些附加的驱动器,其中可能包含另一种语言的操作系统,例如德语。

我需要的只是一组字符串,表示“文档和设置”在本地化 Windows 中的外观,例如德语、西班牙语、中文、意大利语、俄语、日语、韩语、法语等。

有任何参考资料(文件、链接等)可以帮助我吗?

My C# program traverse a drive for some data stored under user profile folder. I need to know whether some particular folder is "Documents and Settings". I cannot use SpecialFolders trick because I traverse not my system drive, but some attached drive, which may contain operating system in another language, for example, German.

What I need is simply a set of strings how "Documents and Settings" look like in localized Windows, e.g. German, Spanish, Chinese, Italian, Russian, Japanese, Korean, French and so on.

Is there any reference (file, link, etc) which may help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

小女人ら 2024-10-22 19:22:41

在这种情况下,您可能必须扫描目录结构,并让您的代码对正确的文件夹进行有根据的猜测。例如:查找所有本地化版本所共有的内容,例如隐藏的“ntuser.dat”文件。

为了说明这一点,请在命令提示符中键入“dir /a:h ntuser.dat /s”。

In this case you may have to scan the directory structure and have your code make an educated guess as to the correct folder. Eg: look for soemthing that will be common to all localizations such as the hidden 'ntuser.dat' file.

To illustrate, type 'dir /a:h ntuser.dat /s' in a command prompt.

就像说晚安 2024-10-22 19:22:41

如果您需要应用程序数据文件夹,我知道的是:

German  (DE)   Application Data    Anwendungsdaten
Italian (IT)   Application Data    Dati applicazioni
Spanish (ES)   Application Data    Datos de programa
Polish  (PL)   Application Data    Dane aplikacji

If you need the Application Data folder equivalents the ones I know are:

German  (DE)   Application Data    Anwendungsdaten
Italian (IT)   Application Data    Dati applicazioni
Spanish (ES)   Application Data    Datos de programa
Polish  (PL)   Application Data    Dane aplikacji
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文