How to retrieve correct path of either system32 or SysWOW64?

前端 未结 3 1421
执笔经年
执笔经年 2020-12-21 02:52

I have a 32-bit process that can run either in 32-bit or 64-bit Windows. So, naturally, if the process tried to access the file c:\\windows\\system32\\file.ext,

3条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-21 03:10

    System32 C:\Windows\System32 Windows System folder (system directory) for 64-bit files SysWOW64 C:\Windows\SysWOW64 Windows System folder (system directory) for 32-bit files Program Files C:\Program Files Folder for 64-bit program files Program Files (x86) C:\Program Files (x86) Folder for 32-bit program files

提交回复
热议问题