Click here to Skip to main content
15,890,527 members
Please Sign up or sign in to vote.
0.00/5 (No votes)

To translate a special folder (C:\Users, C:\Program Files, etc) into its localized equivalent (Swedish: C:\Användare, C:\Program, etc), you can use the Shell32 function SHGetFileInfo().

How do you go about translating a localized path to a "normalized" path?

Normally, you don't have to do this, but there are certain situations where you must do this. In Windows Vista and later, the localized paths are just junction points. These junction points then point to the "normalized" paths, much like symbolic links in Unix. From what I can understand, the junction points are dynamic, and under MUI control. Meaning that one user with a Swedish MUI setting will have a totally different set of paths than a user with a Spanish MUI setting.

I have noticed that if you register a service with a localized path, the service won't start, because the SYSTEM account doesn't share my MUI-settings. When I reregistered the service using the normalized path, it just worked.

I have an algorithm that can do backward translations of localized paths into normalized paths. Unfortunately I feel it's a clumbsy and ineffective algorithm, which is why I'm seeking a better way to do this. There ought to be a system function that can do this for you, but I've yet to find one.

Posted

Did you find a solution for this? Should you be using Environment.GetFolderPath(Environment.SpecialFolder.System) instead of translation?

I suspect Windows might have had English as thier primary language, and every other language values in resource files like structure. If you want to do a translation yourself, i think you need o use .net Resource files (.resx). I would try to avoid the whole lot & use Environment.GetFolderPath(Environment.SpecialFolder.System), so we talk in Machine terms, language independant.
 
Share this answer
 
No, I haven't found a better way to solve this. It's been a while since I looked into it, so I won't swear that there are no good ways to do this. It just means that my "clumbsy" solution outweighed the cost of spending more time on searching for a replacement.

But if you do find a good way, please let me know! :)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900